I have a program with an interface board.ui

When I wanted to update the interphace with Qtcreator nothing happen : Old buttons were presents but not the last one...

I tried to rebuild the program but It was the same.

In fact the board_ui.h file was note updated.

So I tried to delete board_ui.h and now it is impossible to regenerate It. And now I become crasy !!

I really want to understand why!

I used qtcreator 2.0.1 on windows

This is my .pro
Qt Code:
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2010-07-21T13:38:56
  4. #
  5. #-------------------------------------------------
  6.  
  7. QT += core gui
  8.  
  9. TARGET = OutOfMemoryBoard
  10. TEMPLATE = app
  11.  
  12. SOURCES += main.cpp\
  13. board.cpp \
  14. imagecapture.cpp
  15.  
  16. HEADERS += board.h \
  17. imagecapture.h
  18.  
  19.  
  20. FORMS += \
  21. board.ui
  22.  
  23. INCLUDEPATH += "C:\OpenCV2.1\include\opencv"
  24. LIBS += -L"C:\OpenCV2.1\lib" -lcv210 -lcvaux210 -lhighgui210 -lcxcore210
To copy to clipboard, switch view to plain text mode