show/hide this revision's text 3 added 752 characters in body

I'm in the process of learning Qt4 and working through their tutorials.

In this tutorial:

http://doc.trolltech.com/4.5/mainwindows-menus-mainwindow-cpp.html

they have the following code:

fileMenu = menuBar()->addMenu(tr("&File"));

which causes the compiler to throw this error

g++ -c -pipe -O2 -Wall -W -D_REENTRANT -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4 -I. -I. -I. -o main.o main.cpp
g++ -c -pipe -O2 -Wall -W -D_REENTRANT -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4 -I. -I. -I. -o MainWindow.o MainWindow.cpp
MainWindow.cpp: In member functionvoid MainWindow::createMenus()’:
MainWindow.cpp:56: error: ((MainWindow*)this)->MainWindow::menuBar’ cannot be used as a function
MainWindow.cpp:61: error: ((MainWindow*)this)->MainWindow::menuBar’ cannot be used as a function
make: *** [MainWindow.o] Error 1

Does anyone know how I can fix this?

[Edit] Added full error Message with g++

show/hide this revision's text 2 Formatting

I'm in the process of learning Qt4 and working through their tutorials.

In this tutorial:

http://doc.trolltech.com/4.5/mainwindows-menus-mainwindow-cpp.html

they have the follow following code:

fileMenu = menuBar()->addMenu(tr("&File"));menuBar()->addMenu(tr("&File"));

which causes the compiler to throw this error

‘((MainWindow*)this)->MainWindow::menuBar’ cannot be used as a function

Does anyone know how I can fix this?

show/hide this revision's text 1

Qt menuBar() Error

I'm in the process of learning Qt4 and working through their tutorials.

In this tutorial:

http://doc.trolltech.com/4.5/mainwindows-menus-mainwindow-cpp.html

they have the follow code:

fileMenu = menuBar()->addMenu(tr("&File"));

which causes the compiler to throw this error

‘((MainWindow*)this)->MainWindow::menuBar’ cannot be used as a function

Does anyone know how I can fix this?