Modify the includedUis to store the path to the file which includes the ui file. Reuse that path to generate the output file from the uic process.
14 lines
131 B
C++
14 lines
131 B
C++
|
|
#include "uiconly.h"
|
|
|
|
UicOnly::UicOnly(QWidget *parent)
|
|
: QWidget(parent), ui(new Ui::UicOnly)
|
|
{
|
|
|
|
}
|
|
|
|
int main()
|
|
{
|
|
return 0;
|
|
}
|