diff options
| author | Mikaël Capelle <capelle.mikael@gmail.com> | 2020-12-31 12:02:26 +0100 |
|---|---|---|
| committer | Mikaël Capelle <capelle.mikael@gmail.com> | 2021-01-02 15:38:17 +0100 |
| commit | 48d92fbd9f40eb722fa0bda9043bf6725eb5a083 (patch) | |
| tree | 31c4927fd35d53720dc7a8efb9613ed323e082b0 | |
| parent | 2ed9db7aab5d60bc419787dad53a491a62ef15e7 (diff) | |
Fix originModified signal handling.
| -rw-r--r-- | src/modlistviewactions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modlistviewactions.cpp b/src/modlistviewactions.cpp index 5b9c07bc..97fb03ae 100644 --- a/src/modlistviewactions.cpp +++ b/src/modlistviewactions.cpp @@ -434,7 +434,7 @@ void ModListViewActions::displayModInformation(ModInfo::Ptr modInfo, unsigned in modInfo->saveMeta(); ModInfoDialog dialog(m_main, &m_core, &m_core.pluginContainer(), modInfo); - connect(&dialog, SIGNAL(originModified(int)), this, SLOT(originModified(int))); + connect(&dialog, &ModInfoDialog::originModified, this, &ModListViewActions::originModified); //Open the tab first if we want to use the standard indexes of the tabs. if (tab != ModInfoTabIDs::None) { |
