Remove runtime warning "QMetaObject::connectSlotsByName: No matching signal for
on_copyPB_clicked()".
This commit is contained in:
Guillaume Munch 2015-12-19 23:50:58 +00:00
parent 32bc592b07
commit fd4d23b448
2 changed files with 3 additions and 2 deletions

View File

@ -329,11 +329,12 @@ void GuiLog::getContents(ostream & ss) const
} }
} }
/*
void GuiLog::on_copyPB_clicked() void GuiLog::on_copyPB_clicked()
{ {
theClipboard().put(fromqstr(logTB->toPlainText())); theClipboard().put(fromqstr(logTB->toPlainText()));
} }
*/
Dialog * createGuiLog(GuiView & lv) { return new GuiLog(lv); } Dialog * createGuiLog(GuiView & lv) { return new GuiLog(lv); }

View File

@ -34,7 +34,7 @@ public:
private Q_SLOTS: private Q_SLOTS:
void updateContents(); void updateContents();
/// copy log to clipboard /// copy log to clipboard
void on_copyPB_clicked(); //void on_copyPB_clicked();
/// find content /// find content
void find(); void find();
/// jump to next error message /// jump to next error message