diff options
| author | Tannin <devnull@localhost> | 2014-09-08 20:37:23 +0200 |
|---|---|---|
| committer | Tannin <devnull@localhost> | 2014-09-08 20:37:23 +0200 |
| commit | 482f13a50b921e61d34d09f72a7fb4216efe742b (patch) | |
| tree | 780120e8b7691645fe6d4a0394843032df279548 /src/modlist.h | |
| parent | cc42e76f54a37a0af9704f3966fdb48625686c24 (diff) | |
- re-enabled building of loot_cli and started developing against the new api
- extended set of default categories
- more tolerand bbcode parser
- added a few colors for the bbcode parser
- more fixes to qt5 compatibility
- started work on ability to unloading (and thus re-loading) of plugins
- names of plugins are no longer localizable (because those names are also used to store settings)
- added settings to disable individual diagnosis settings
- path of dependencies is now configured in a .pri file instead of environment variablees
- bugfix: if the modid-input is canceled, the id was saved as -1 and wasn't re-requested from the user
- bugfix: moving files with the SHFileOperation-Api didn't update the vfs correctly (still not perfect but better)
- bugfix: attempt to remove the deleter-file seems to have caused error messages for some users
- bugfix: fixed a couple of cases that might have caused the tutorial to hang
Diffstat (limited to 'src/modlist.h')
| -rw-r--r-- | src/modlist.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/modlist.h b/src/modlist.h index 6116a913..632689c6 100644 --- a/src/modlist.h +++ b/src/modlist.h @@ -32,7 +32,9 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>. #include <QListWidget>
#include <QNetworkReply>
#include <QNetworkAccessManager>
+#ifndef Q_MOC_RUN
#include <boost/signals2.hpp>
+#endif
#include <set>
#include <vector>
#include <QVector>
@@ -73,6 +75,8 @@ public: **/
ModList(QObject *parent = NULL);
+ ~ModList();
+
/**
* @brief set the profile used for status information
*
@@ -103,6 +107,8 @@ public: void modInfoAboutToChange(ModInfo::Ptr info);
void modInfoChanged(ModInfo::Ptr info);
+ void disconnectSlots();
+
public:
/// \copydoc MOBase::IModList::displayName
|
