summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutogen/RerunUicOnFileChange/UicOnFileChange/main.cpp
blob: 99de13dccf214cbaf0071a48b84709efd1b50340 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "mainwindow.h"
#include "ui_mainwindow.h"

extern bool subdircheck();

int main(int argc, char* argv[])
{
  MocWidget mw;
  Ui::Widget mwUi;
  mwUi.setupUi(&mw);
  return mw.objectName() == "Widget2" && subdircheck() ? 0 : 1;
}