-rw-r--r-- | noncore/securityplugins/notice/noticeplugin.cpp | 3 | ||||
-rw-r--r-- | noncore/securityplugins/notice/noticeplugin.h | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/noncore/securityplugins/notice/noticeplugin.cpp b/noncore/securityplugins/notice/noticeplugin.cpp index f7d41ab..bacc439 100644 --- a/noncore/securityplugins/notice/noticeplugin.cpp +++ b/noncore/securityplugins/notice/noticeplugin.cpp | |||
@@ -6,4 +6,5 @@ | |||
6 | #include <qregexp.h> | 6 | #include <qregexp.h> |
7 | 7 | ||
8 | |||
8 | /// creates and initializes the m_config Config object | 9 | /// creates and initializes the m_config Config object |
9 | NoticePlugin::NoticePlugin() : MultiauthPluginObject(), noticeW(0) { | 10 | NoticePlugin::NoticePlugin() : MultiauthPluginObject(), noticeW(0) { |
@@ -60,5 +61,5 @@ int NoticePlugin::authenticate() { | |||
60 | Qt::WStyle_NoBorder | Qt::WStyle_Customize | Qt::WStyle_StaysOnTop); | 61 | Qt::WStyle_NoBorder | Qt::WStyle_Customize | Qt::WStyle_StaysOnTop); |
61 | 62 | ||
62 | noticeDialog.setButtonText(QMessageBox::Yes, "I accept"); | 63 | noticeDialog.setButtonText(QMessageBox::Yes, tr("I accept")); |
63 | 64 | ||
64 | QRect desk = oApp->desktop()->geometry(); | 65 | QRect desk = oApp->desktop()->geometry(); |
diff --git a/noncore/securityplugins/notice/noticeplugin.h b/noncore/securityplugins/notice/noticeplugin.h index e01cb93..842d47b 100644 --- a/noncore/securityplugins/notice/noticeplugin.h +++ b/noncore/securityplugins/notice/noticeplugin.h | |||
@@ -44,5 +44,7 @@ | |||
44 | * The plugin itself, implementing the main authenticate() function. | 44 | * The plugin itself, implementing the main authenticate() function. |
45 | */ | 45 | */ |
46 | class NoticePlugin : public MultiauthPluginObject { | 46 | class NoticePlugin : public QObject, public MultiauthPluginObject { |
47 | |||
48 | Q_OBJECT; | ||
47 | 49 | ||
48 | public: | 50 | public: |