Edit: Fix bug introduced in 2242ce8ee6

Fix a bug introduced by commit 2242ce8ee6
which didn't change the code only for the edit dialog, not for the edit dock.

See issue #508.
This commit is contained in:
Martin Kleusberg
2016-01-29 23:11:19 +01:00
parent 1efec0cc5a
commit 5387896f52
+1 -1
View File
@@ -184,7 +184,7 @@ void MainWindow::init()
connect(editWin, SIGNAL(goingAway()), this, SLOT(editWinAway()));
connect(editWin, SIGNAL(updateRecordText(int, int, bool, QByteArray)), this, SLOT(updateRecordText(int, int, bool, QByteArray)));
connect(editDock, SIGNAL(goingAway()), this, SLOT(editWinAway()));
connect(editDock, SIGNAL(updateRecordText(int, int, QByteArray)), this, SLOT(updateRecordText(int, int, QByteArray)));
connect(editDock, SIGNAL(updateRecordText(int, int, bool, QByteArray)), this, SLOT(updateRecordText(int, int, bool, QByteArray)));
connect(ui->dbTreeWidget->selectionModel(), SIGNAL(currentChanged(QModelIndex,QModelIndex)), this, SLOT(changeTreeSelection()));
connect(ui->dataTable->horizontalHeader(), SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(showDataColumnPopupMenu(QPoint)));