summaryrefslogtreecommitdiff
path: root/interface/PluginInterface_SessionLoader.h
diff options
context:
space:
mode:
Diffstat (limited to 'interface/PluginInterface_SessionLoader.h')
-rw-r--r--interface/PluginInterface_SessionLoader.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/interface/PluginInterface_SessionLoader.h b/interface/PluginInterface_SessionLoader.h
index 85b9b22..d0cd366 100644
--- a/interface/PluginInterface_SessionLoader.h
+++ b/interface/PluginInterface_SessionLoader.h
@@ -6,7 +6,7 @@
#ifndef PLUGININTERFACE_SESSIONLOADER_H
#define PLUGININTERFACE_SESSIONLOADER_H
-#include <QString>
+#include <string>
#include "OptionInterface.h"
@@ -23,7 +23,7 @@ class PluginInterface_SessionLoader : public QObject
/// \brief get if is enabled
virtual bool getEnabled() const = 0;
/// \brief set the resources
- virtual void setResources(OptionInterface * options,const QString &writePath,const QString &pluginPath,const bool &portableVersion) = 0;
+ virtual void setResources(OptionInterface * options,const std::string &writePath,const std::string &pluginPath,const bool &portableVersion) = 0;
/// \brief to get the options widget, NULL if not have
virtual QWidget * options() = 0;
public slots:
@@ -31,9 +31,9 @@ class PluginInterface_SessionLoader : public QObject
virtual void newLanguageLoaded() = 0;
signals:
/// \brief To debug source
- void debugInformation(const Ultracopier::DebugLevel &level,const QString &fonction,const QString &text,const QString &file,const int &ligne) const;
+ void debugInformation(const Ultracopier::DebugLevel &level,const std::string &fonction,const std::string &text,const std::string &file,const int &ligne) const;
};
-Q_DECLARE_INTERFACE(PluginInterface_SessionLoader,"first-world.info.ultracopier.PluginInterface.SessionLoader/1.0.0.0");
+Q_DECLARE_INTERFACE(PluginInterface_SessionLoader,"first-world.info.ultracopier.PluginInterface.SessionLoader/1.2.4.0");
#endif // PLUGININTERFACE_SESSIONLOADER_H