diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2019-07-17 08:56:16 -0400 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2019-07-22 07:33:37 -0400 |
| commit | bca6283311cf1dea4c96f8ee5bf192bdb1640cb3 (patch) | |
| tree | 7a6b0445974a974bf4b03d08d4ac9371de0ea663 /src/usvfsconnector.h | |
| parent | d1b4dec8ad1635738ada3dfbde5907e7f0df3448 (diff) | |
use log::Levels instead of ints
create log level combobox in code, set selected index based on value instead
added log level to context menu in log list
Diffstat (limited to 'src/usvfsconnector.h')
| -rw-r--r-- | src/usvfsconnector.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/usvfsconnector.h b/src/usvfsconnector.h index 8a88bde5..b0bd320c 100644 --- a/src/usvfsconnector.h +++ b/src/usvfsconnector.h @@ -29,6 +29,7 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>. #include <QDebug> #include <QList> #include <usvfsparameters.h> +#include <log.h> #include "executableinfo.h" @@ -84,7 +85,11 @@ public: ~UsvfsConnector(); void updateMapping(const MappingType &mapping); - void updateParams(int logLevel, int crashDumpsType, QString executableBlacklist); + + void updateParams( + MOBase::log::Levels logLevel, int crashDumpsType, + QString executableBlacklist); + void updateForcedLibraries(const QList<MOBase::ExecutableForcedLoadSetting> &forcedLibraries); private: |
