aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/General/hotkey
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/General/hotkey')
-rw-r--r--src/plugins/General/hotkey/hotkeyfactory.cpp8
-rw-r--r--src/plugins/General/hotkey/hotkeyfactory.h3
2 files changed, 8 insertions, 3 deletions
diff --git a/src/plugins/General/hotkey/hotkeyfactory.cpp b/src/plugins/General/hotkey/hotkeyfactory.cpp
index 7092e1d06..ff74a5cfe 100644
--- a/src/plugins/General/hotkey/hotkeyfactory.cpp
+++ b/src/plugins/General/hotkey/hotkeyfactory.cpp
@@ -25,12 +25,11 @@
#include "hotkeymanager.h"
#include "hotkeyfactory.h"
-const GeneralProperties HotkeyFactory::properties() const
+GeneralProperties HotkeyFactory::properties() const
{
GeneralProperties properties;
properties.name = tr("Global Hotkey Plugin");
properties.shortName = "hotkey";
- properties.translation = QLatin1String(":/hotkey_plugin_");
properties.hasAbout = true;
properties.hasSettings = true;
properties.visibilityControl = false;
@@ -60,3 +59,8 @@ void HotkeyFactory::showAbout(QWidget *parent)
tr("This plugin adds support for multimedia keys or global key combinations")+"\n"+
tr("Written by: Ilya Kotov <forkotov02@ya.ru>"));
}
+
+QString HotkeyFactory::translation() const
+{
+ return QLatin1String(":/hotkey_plugin_");
+}
diff --git a/src/plugins/General/hotkey/hotkeyfactory.h b/src/plugins/General/hotkey/hotkeyfactory.h
index 98e8cbcac..2bd998f5f 100644
--- a/src/plugins/General/hotkey/hotkeyfactory.h
+++ b/src/plugins/General/hotkey/hotkeyfactory.h
@@ -33,10 +33,11 @@ Q_OBJECT
Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.GeneralFactoryInterface.1.0")
Q_INTERFACES(GeneralFactory)
public:
- const GeneralProperties properties() const;
+ GeneralProperties properties() const;
QObject *create(QObject *parent);
QDialog *createConfigDialog(QWidget *parent);
void showAbout(QWidget *parent);
+ QString translation() const;
};
#endif