diff options
| author | Mikaƫl Capelle <capelle.mikael@gmail.com> | 2020-12-07 08:40:23 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-07 08:40:23 +0100 |
| commit | 904264e231a9aef485025cb45f1eb006b017aa1a (patch) | |
| tree | c3ff682de4ac4761b8d36f0e96a96dce6a034706 /src/mainwindow.h | |
| parent | 0a6a5eb7868dde908e07ea12c7eb674b2063b950 (diff) | |
| parent | 3264d7899e2560bce4591ab2142ee9d51bc7890c (diff) | |
Merge pull request #1313 from Holt59/load-plugin-without-restart
Implement loading/unloading of plugins without restarting
Diffstat (limited to 'src/mainwindow.h')
| -rw-r--r-- | src/mainwindow.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h index da7bb6ee..7a1c683d 100644 --- a/src/mainwindow.h +++ b/src/mainwindow.h @@ -133,8 +133,6 @@ public: void installTranslator(const QString &name); - virtual void disconnectPlugins(); - void displayModInformation( ModInfo::Ptr modInfo, unsigned int modIndex, ModInfoTabIDs tabID) override; @@ -168,12 +166,6 @@ signals: */ void styleChanged(const QString &styleFile); - /** - * @brief emitted when the user interface has been completely initialized - */ - void userInterfaceInitialized(); - - void modListDataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight); void checkForProblemsDone(); @@ -635,6 +627,8 @@ private slots: // ui slots void on_saveModsButton_clicked(); void on_managedArchiveLabel_linkHovered(const QString &link); + void onPluginRegistrationChanged(); + void storeSettings(); void readSettings(); void setupModList(); |
