diff options
| author | Tannin <sherb@gmx.net> | 2016-02-12 19:08:25 +0100 |
|---|---|---|
| committer | Tannin <sherb@gmx.net> | 2016-02-12 19:08:25 +0100 |
| commit | 4f8c71d62626aa61fb4d13f80bc043d5e6492c3e (patch) | |
| tree | c16531f7609668321d780e88a523319d18fc8667 /src/organizerproxy.cpp | |
| parent | fd68248698357591f99c3091d5b15a3084fc078d (diff) | |
merged master into new_vfs_library
Diffstat (limited to 'src/organizerproxy.cpp')
| -rw-r--r-- | src/organizerproxy.cpp | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/organizerproxy.cpp b/src/organizerproxy.cpp index 79ff50e5..fe6809e3 100644 --- a/src/organizerproxy.cpp +++ b/src/organizerproxy.cpp @@ -1,6 +1,7 @@ #include "organizerproxy.h"
-#include <appconfig.h>
+#include "appconfig.h"
+#include "organizercore.h"
#include <QApplication>
@@ -171,7 +172,17 @@ MOBase::IModList *OrganizerProxy::modList() const return m_Proxied->modList();
}
+MOBase::IProfile *OrganizerProxy::profile() const
+{
+ return m_Proxied->currentProfile();
+}
+
MOBase::IPluginGame const *OrganizerProxy::managedGame() const
{
return m_Proxied->managedGame();
}
+
+QStringList OrganizerProxy::modsSortedByProfilePriority() const
+{
+ return m_Proxied->modsSortedByProfilePriority();
+}
|
