vote up 0 vote down star

I have a KMainWindow:

//file.h
class MainWindow: public KMainWindow {
public:
    MainWindow(QWidget *parent = 0);
...
...
...

private slots:
    void removeClick();

//file.cpp
MainWindow::MainWindow(QWidget *parent) :
KMainWindow(parent) {}

void MainWindow::removeClick() 
    {
    std::cout << "Remove" << std::endl;
    }

I can compile it correctly, but when I execute the I get the message

Object::connect: No such slot KMainWindow::removeClick()

Can anybody help me?

flag

2 Answers

vote up 2 vote down check

You forgot the Q_OBJECT macro.

class MainWindow: public KMainWindow 
{
    Q_OBJECT

public:
    // [snip]
}
link|flag
vote up 0 vote down

solved using KXmlGuiWindow instead of KMainWindow and the Q_OBJECT macro

link|flag

Your Answer

Get an OpenID
or

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