author | clem <clem> | 2004-06-15 19:33:29 (UTC) |
---|---|---|
committer | clem <clem> | 2004-06-15 19:33:29 (UTC) |
commit | 4b1fb9237a832aaa34c97421165916e1583b8b1a (patch) (unidiff) | |
tree | e55c8f48d67f1a695a4602cf92052489c6a9e660 | |
parent | c3ac367a9c0eb1f2069d13359fbe288ee801d1a4 (diff) | |
download | opie-4b1fb9237a832aaa34c97421165916e1583b8b1a.zip opie-4b1fb9237a832aaa34c97421165916e1583b8b1a.tar.gz opie-4b1fb9237a832aaa34c97421165916e1583b8b1a.tar.bz2 |
added tr support
-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 | |||
@@ -2,12 +2,13 @@ | |||
2 | 2 | ||
3 | #include <opie2/oapplication.h> | 3 | #include <opie2/oapplication.h> |
4 | 4 | ||
5 | #include <qmessagebox.h> | 5 | #include <qmessagebox.h> |
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) { |
10 | m_config = new Config("Security"); | 11 | m_config = new Config("Security"); |
11 | m_config->setGroup("NoticePlugin"); | 12 | m_config->setGroup("NoticePlugin"); |
12 | } | 13 | } |
13 | 14 | ||
@@ -56,13 +57,13 @@ int NoticePlugin::authenticate() { | |||
56 | 0, | 57 | 0, |
57 | 0, | 58 | 0, |
58 | "notice plugin dialog", | 59 | "notice plugin dialog", |
59 | true, | 60 | true, |
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(); |
65 | noticeDialog.setGeometry( 0, 0, desk.width(), desk.height() ); | 66 | noticeDialog.setGeometry( 0, 0, desk.width(), desk.height() ); |
66 | 67 | ||
67 | switch (noticeDialog.exec()) | 68 | switch (noticeDialog.exec()) |
68 | { | 69 | { |
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 | |||
@@ -40,13 +40,15 @@ | |||
40 | #include "noticeConfigWidget.h" | 40 | #include "noticeConfigWidget.h" |
41 | 41 | ||
42 | /// Multi-authentication plugin, having the user accept a (legal, etc.) notice text. | 42 | /// Multi-authentication plugin, having the user accept a (legal, etc.) notice text. |
43 | /** | 43 | /** |
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: |
49 | NoticePlugin(); | 51 | NoticePlugin(); |
50 | virtual ~NoticePlugin(); | 52 | virtual ~NoticePlugin(); |
51 | int authenticate(); | 53 | int authenticate(); |
52 | MultiauthConfigWidget * configWidget(QWidget * parent); | 54 | MultiauthConfigWidget * configWidget(QWidget * parent); |