summaryrefslogtreecommitdiff
path: root/Tests/QtAutogen/RerunUicOnFileChange/UicOnFileChange/main.cpp
blob: 39812688463ae0c5b9079b20b05a161e559c41cf (plain)
1
2
3
4
5
6
7
8
9
10
11
#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;
}