Hi. I've got a problem. When I tried to compile the program, there appear error:
undefined reference to 'abcziom()' in maker.cpp. Here are those two files:
Maker.cpp
Maker.hCode:
#include <QtGui> #include "maker.h" { ui.setupUi(this); } void MainWindow::abcziom() { }
Main.cpp, and ui_maker.h which I won't post, becauce is not problematic relationship. I really don't know what is this error about. RegardsCode:
#ifndef MAKER_H #define MAKER_H #include "ui_maker.h" { Q_OBJECT public: private slots: void abcziom(); private: Ui::MainWindow ui; }; #endif