Qt menuBar() Error - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T10:08:10Z http://stackoverflow.com/feeds/question/1015202 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1015202/qt-menubar-error 0 Qt menuBar() Error Scott 2009-06-18T21:13:15Z 2009-06-19T01:49:15Z <p>I'm in the process of learning Qt4 and working through their tutorials. </p> <p>In this tutorial:</p> <p><a href="http://doc.trolltech.com/4.5/mainwindows-menus-mainwindow-cpp.html" rel="nofollow">http://doc.trolltech.com/4.5/mainwindows-menus-mainwindow-cpp.html</a></p> <p>they have the following code:</p> <pre><code>fileMenu = menuBar()-&gt;addMenu(tr("&amp;File")); </code></pre> <p>which causes the compiler to throw this error</p> <pre> 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 function ‘void 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 </pre> <p>Does anyone know how I can fix this?</p> <p>[Edit] Added full error Message with g++ </p> http://stackoverflow.com/questions/1015202/qt-menubar-error/1015461#1015461 0 Answer by ephemient for Qt menuBar() Error ephemient 2009-06-18T22:06:21Z 2009-06-18T22:06:21Z <p>Are you sure you're inheriting from <code>QMainWindow</code>, you haven't created or inherited any fields which might shadow the name <code>menuBar</code>, and you've run <code>moc</code> (or had <code>qmake</code> do so for you)?</p> <p>The <code>mainwindow.cpp</code>, <code>mainwindow.h</code>, <code>main.cpp</code>, and <code>menus.pro</code> from the example, unmodified, should work fine.</p> <pre> $ cd examples/mainwindows/menus/ $ ls main.cpp mainwindow.cpp mainwindow.h menus.pro $ qmake $ make g++ -c -pipe -g -O2 -mtune=native -pipe -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. -o mainwindow.o mainwindow.cpp g++ -c -pipe -g -O2 -mtune=native -pipe -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. -o main.o main.cpp /usr/bin/moc -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. mainwindow.h -o moc_mainwindow.cpp g++ -c -pipe -g -O2 -mtune=native -pipe -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. -o moc_mainwindow.o moc_mainwindow.cpp g++ -Wl,--as-needed -Wl,--hash-style=both -o menus mainwindow.o main.o moc_mainwindow.o -L/usr/lib64/qt4 -lQtGui -L/usr/lib64 -L/usr/lib64/qt4 -L/usr/X11R6/lib64 -pthread -lpng -lfreetype -lgobject-2.0 -lSM -lICE -pthread -pthread -lXrender -lXrandr -lXinerama -lfontconfig -lXext -lX11 -lQtCore -lz -lm -pthread -lgthread-2.0 -lrt -lglib-2.0 -ldl -lpthread $ ls -F Makefile main.o mainwindow.h menus* moc_mainwindow.cpp main.cpp mainwindow.cpp mainwindow.o menus.pro moc_mainwindow.o </pre> http://stackoverflow.com/questions/1015202/qt-menubar-error/1016025#1016025 0 Answer by Scott for Qt menuBar() Error Scott 2009-06-19T01:49:15Z 2009-06-19T01:49:15Z <p>For some reason QMainWindow was not getting setting up correctly. This was fixed by calling the base class constructor. </p>