Re: How to regenared files?
Run qmake and then run rebuild
Re: How to regenared files?
First try Run qmake (from the Build menu)
if that doesn't work i guess that you created the project with older version of Creator and now you opened with latest, then notice that the latest Creator makes <at least> two folders for your Project:
1 - ProjectName folder
2 - ProjectName-build-desktop folder
Navigate with explorer to the first one (ProjectName) and delete Debug/Release folders, make files, moc, and other generated files (make sure not to delete your code files or resources, project...) after that open the .pro file with Creator and build your app (the changes from .ui files should update now)
Re: How to regenared files?
you right !! But when I did this. It doesn't find my #include "ui_board.h" in my program...
Re: How to regenared files?
But the "ui_board.h" is in the ProjectName-build-desktop folder?
Re: How to regenared files?
ok that works finaly like you said. sorry
Re: How to regenared files?
It should work, they created a little "mess" right now with generated files in two folders, and sometimes the compiler takes the ones from ProjectName folder (witch are not updated) the tools only update the ones from ProjectName-build-...
But i think is better this way even if now some peoples have problems with that, with two folders you get the generated code separate from yours (i think it's a good thing)
Re: How to regenared files?
If you want to define where your ui files should be stored you can also have a look at the qmake variable UI_DIR. MOC_DIR, OBJECTS_DIR and RCC_DIR might be also of interest.