Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Qt GUI doesnt change after compilation

I created a GUI using the Qt Designer compiled and run.
Then I made a few changes in the GUI and recompiled again but the GUI remained the same.
Even if I delete the widgets and recompile they appear...

I tried Clean All and Clean Project but no success...
What might be the problem?

like image 778
kaycee Avatar asked Jan 06 '11 16:01

kaycee


2 Answers

I know this is an old thread, but I guess it is still active. One reason for this buggy behavior is the Shadow build checkbox is enabled. Click on the "Project" icon in the Qt creator, under Build-> General, uncheck Shadow build. Rebuild again.

like image 92
osbuilder Avatar answered Nov 03 '22 15:11

osbuilder


You can recompile your UI with the following command. It worked for me.

uic mainwindow.ui>ui_mainwindow.h
like image 23
Celal Ergün Avatar answered Nov 03 '22 15:11

Celal Ergün