PDA

View Full Version : [Resolved]Qt creator problem



Mister_Qt
22nd August 2021, 10:58
Hello,

I wanted to work on an old Qt creator project, my old interface looks like this:

13706
I made changes to achieve this result:
13707

But if I build my project and execute I still have the old interface:
13706

Do you have any idea what's going on?

Regards.

Ginsengelf
25th August 2021, 12:34
Hi, several possibilities:
- you did not edit the correct .ui file
- uic is not run
- uic is run but uses the wrong input file
- uic is run but its output goes to the wrong directory

Ginsengelf