Merge branch 'master' of ssh://git@gitlab.com:/eelke/pgLab.git

This commit is contained in:
eelke 2019-10-06 09:34:45 +02:00
commit 4ea388cad7
4 changed files with 12 additions and 4 deletions

View file

@ -389,7 +389,7 @@ void DatabaseWindow::on_actionCopy_triggered()
}
else {
const QMetaObject *meta = w->metaObject();
int i = meta->indexOfSlot("copy");
int i = meta->indexOfMethod("copy()");
if (i != -1) {
QMetaMethod method = meta->method(i);
method.invoke(w, Qt::AutoConnection);