QDialog 不编译

QDialog doesn't compile

我面临着和这个人完全一样的问题: Qmake doesn't generate a header file ..除了已经陈述的答案不能解决我的问题。当我 'qmake' 我的项目在 'qmake -project' 之后时,它没有生成书中所述的头文件。当我'make'按照上面两条命令进行工程时,它会生成一个头文件'ui_gotocell.h'(对应于我的工程目录的名称,而不是[=21=中使用的'ui_gotocelldialog.h' ]) 并终止编译并出现以下错误:

g++ -c -m32 -pipe -O2 -Wall -W -D_REENTRANT -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I../Canopy32/appdata/canopy-1.4.1.1975.rh5-x86/mkspecs/linux-g++-32 -I. -I../Canopy32/appdata/canopy-1.4.1.1975.rh5-x86/include/QtCore -I../Canopy32/appdata/canopy-1.4.1.1975.rh5-x86/include/QtGui -I../Canopy32/appdata/canopy-1.4.1.1975.rh5-x86/include -I. -I. -I. -o main.o main.cpp
main.cpp: In function ‘int main(int, char**)’:
main.cpp:10:2: error: ‘GotoCellDialog’ is not a member of ‘Ui’
  Ui::GotoCellDialog ui;
  ^
main.cpp:10:21: error: expected ‘;’ before ‘ui’
  Ui::GotoCellDialog ui;
                    ^
main.cpp:12:2: error: ‘ui’ was not declared in this scope
  ui.setupUi(dialog);
  ^
make: *** [main.o] Error 1
itqan@Itqan:~/gotocell$

我在 ubuntu 14.04 上使用带有 GNU GCC 编译器的 Qt 5.4。

Ui::GotoCellDialog ui;替换为main.cpp中的Ui:Dialog ui;