Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using Code::Blocks 8.02 and the mingw 5.1.6 compiler. I'm getting this error when I compile my Qt project:

C:\Documents and Settings\The Fuzz\Desktop\GUI\App_interface.cpp|33|undefined reference to `vtable for AddressBook'

File AddressBook.h:

 #ifndef ADDRESSBOOK_H
 #define ADDRESSBOOK_H

 #include <QWidget>

 class QLabel;
 class QLineEdit;
 class QTextEdit;

 class AddressBook : public QWidget
 {
     Q_OBJECT

 public:
     AddressBook(QWidget *parent = 0);

 private:
     QLineEdit *nameLine;
     QTextEdit *addressText;
 };

 #endif

File AddressBook.cpp:

#include <QtGui>
#include "addressbook.h"

AddressBook::AddressBook(QWidget *parent)
     : QWidget(parent)
{
    QLabel *nameLabel = new QLabel(tr("Name:"));
    nameLine = new QLineEdit;

    QLabel *addressLabel = new QLabel(tr("Address:"));
    addressText = new QTextEdit;

    QGridLayout *mainLayout = new QGridLayout;
    mainLayout->addWidget(nameLabel, 0, 0);
    mainLayout->addWidget(nameLine, 0, 1);
    mainLayout->addWidget(addressLabel, 1, 0, Qt::AlignTop);
    mainLayout->addWidget(addressText, 1, 1);

    setLayout(mainLayout);
    setWindowTitle(tr("Simple Address Book"));
}
share|improve this question

10 Answers

up vote 24 down vote accepted

In order to automatically ensure that all moc cpp files are generated, you can get qmake to automatically generate a .pro file for you instead of writing one yourself.

Run

qmake -project

in the project directory, and qmake will scan your directory for all C++ headers and source files to generate moc cpp files for.

share|improve this answer
2  
I have the exact same problem as the OP, but in my case rerunning qmake does not solve it. This is only a partial solution that will work for only for some. – DarenW Jan 14 '11 at 19:44
1  
DarenW: Check that the header with the class declaration is listed in HEADERS. – Frank Osterfeld Mar 29 '11 at 14:48
DarenW : thanks,it helps. i was thinking about this problem 3 hours. what is it? i didn't write manually qmake. is it somehow hole in qt, or what? why doesn't it compile, when we 've written all right? – gekannt Sep 18 '11 at 0:09

The problem is almost certainly that you are not compiling or not linking in the generated moc_AddressBook.cpp file. (It should have been generated for you -- you are running Qt's moc on your code before compiling, right?)

To answer a little more thoroughly, the Q_OBJECT macro signals Qt's moc tool to create an extra implementation file that contains the code necessary to support QObject's meta-information system. If you had any signals or slots, it would do a few things for those as well.

An alternative solution might be to remove the Q_OBJECT macro. You probably don't want to do this, but it would help the immediate problem, and it isn't strictly necessary with the code that you've presented.

Also, I would note that your line:

#include "addressbook.h"

Should probably be:

#include "AddressBook.h"

based on how you presented the filenames in the question.

share|improve this answer
Windows filesystems are not case-sensitive. – Mircea Chirea Mar 29 '11 at 12:54
2  
You should still try to pay attention to case even on Windows... It's really annoying on Unix to check out a project and having to manually fix case issues like this because the original developer on Windows didn't care – Etienne Perot Mar 16 '12 at 2:24

just say "run qmake" from Build menu & then "Rebuild All" again from Build menu....problem gets solved...atleast in my case it did.

share|improve this answer
This answer is misleading. It makes perfect sense if the OP is using Qt Creator, but the OP only states Code::Blocks. To my knowledge, Code::Blocks doesn't come with a run qmake option on the build menu, and why would it? I can believe a plugin would add an option like that, but the OP doesn't mention use of any third party plugin. It is likely the case that the OP must still run qmake but telling them to use a menu option which probably doesn't exist is not going to be helpful. – Styne666 Jan 23 '12 at 12:55

I got this while using pure virtual functions. For example, "virtual void process();" gave this error, while "virtual void process() = 0;" made it go away. For anyone who's Googling this problem, check that first. I'm using Netbeans with the MinGW compiler.

share|improve this answer
I had the same problem with Qt Creator 1.3 under Ubuntu, and this worked for me. I don't know what's the underlying problem, though. – Martin Sep 13 '11 at 18:57

Assuming you are using qmake to generate your Makefile, be sure that AddressBook.h is specified in your .pro file's HEADERS's variable, e.g.

HEADERS = AddressBook.h
share|improve this answer

I had the same problem but as soon as I defined my constructor in the header file instead of the .cpp the error disappeared. Also the corresponding moc file was missing in the file system and in the Makefile section"compiler_moc_header_make_all" . I ran a qmake then finally everything built with succes. I went to check the Makefile and it was there now.

share|improve this answer

I come to the same problem, rebuild the project never update the Makefile, I remove the Makefile and rebuild , the the problem is gone. ps: run 'make' from command line may give you detail information than the IDE, and helpful to get the real problem.

share|improve this answer

deleted the build folder, restarted Qt Creator and it worked

share|improve this answer

One cause is when you declare a virtual funtions in a class and you don't define their body.

share|improve this answer

Go to .pro file and make sure .h file has 'include' before it. HEADERS += include/file.h \ include/file2.h

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.