You didn't declare your signals or one of your slots. You have to declare your signals and slots.
you need something like:
Qt Code:
signals: void quit_button_clicked(); void print_button_clicked(); public slots: void printmyplot(); void quit_button_clicked();To copy to clipboard, switch view to plain text mode
Bookmarks