summaryrefslogtreecommitdiff
path: root/SessionLoader.h
diff options
context:
space:
mode:
authorThomas Preud'homme <robotux@celest.fr>2018-02-23 23:49:48 +0000
committerThomas Preud'homme <robotux@celest.fr>2018-02-23 23:49:48 +0000
commitbd56579c7d9de94c17287adefa118290e6b7ba33 (patch)
tree666d7d0b6945b442573b7a3145969f66a53aa460 /SessionLoader.h
parentb3c8bdcc0d1e4b2ab298847a7902b6d60410a5bc (diff)
New upstream version 1.4.0.3
Diffstat (limited to 'SessionLoader.h')
-rw-r--r--SessionLoader.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/SessionLoader.h b/SessionLoader.h
index c14f0f5..7889284 100644
--- a/SessionLoader.h
+++ b/SessionLoader.h
@@ -35,9 +35,9 @@ class SessionLoader : public QObject
#ifndef ULTRACOPIER_PLUGIN_ALL_IN_ONE
void onePluginWillBeRemoved(const PluginsAvailable &plugin);
#endif
- void newOptionValue(const QString &groupName,const QString &variableName,const QVariant &value);
+ void newOptionValue(const std::string &groupName,const std::string &variableName,const std::string &value);
#ifdef ULTRACOPIER_DEBUG
- void debugInformation(const Ultracopier::DebugLevel &level,const QString& fonction,const QString& text,const QString& file,const int& ligne);
+ void debugInformation(const Ultracopier::DebugLevel &level,const std::string& fonction,const std::string& text,const std::string& file,const int& ligne);
#endif // ULTRACOPIER_DEBUG
private:
//variable
@@ -47,10 +47,10 @@ class SessionLoader : public QObject
#ifndef ULTRACOPIER_PLUGIN_ALL_IN_ONE_DIRECT
QPluginLoader * pluginLoader;
#endif
- QString path;
+ std::string path;
LocalPluginOptions *options;
};
- QList<LocalPlugin> pluginList;
+ std::vector<LocalPlugin> pluginList;
bool shouldEnabled;
OptionDialog *optionDialog;
signals: