summaryrefslogtreecommitdiff
path: root/noncore/securityplugins/notice/noticeplugin.cpp
authorclem <clem>2004-06-15 19:33:29 (UTC)
committer clem <clem>2004-06-15 19:33:29 (UTC)
commit4b1fb9237a832aaa34c97421165916e1583b8b1a (patch) (unidiff)
treee55c8f48d67f1a695a4602cf92052489c6a9e660 /noncore/securityplugins/notice/noticeplugin.cpp
parentc3ac367a9c0eb1f2069d13359fbe288ee801d1a4 (diff)
downloadopie-4b1fb9237a832aaa34c97421165916e1583b8b1a.zip
opie-4b1fb9237a832aaa34c97421165916e1583b8b1a.tar.gz
opie-4b1fb9237a832aaa34c97421165916e1583b8b1a.tar.bz2
added tr support
Diffstat (limited to 'noncore/securityplugins/notice/noticeplugin.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/securityplugins/notice/noticeplugin.cpp3
1 files changed, 2 insertions, 1 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
@@ -1,19 +1,20 @@
1#include "noticeplugin.h" 1#include "noticeplugin.h"
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
9NoticePlugin::NoticePlugin() : MultiauthPluginObject(), noticeW(0) { 10NoticePlugin::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
14/// deletes the m_config Config object and noticeW if necessary 15/// deletes the m_config Config object and noticeW if necessary
15NoticePlugin::~NoticePlugin() { 16NoticePlugin::~NoticePlugin() {
16 delete m_config; 17 delete m_config;
17 if (noticeW != 0) 18 if (noticeW != 0)
18 delete noticeW; 19 delete noticeW;
19} 20}
@@ -50,25 +51,25 @@ QString NoticePlugin::pixmapNameWidget() const {
50int NoticePlugin::authenticate() { 51int NoticePlugin::authenticate() {
51 QMessageBox noticeDialog("Notice plugin", 52 QMessageBox noticeDialog("Notice plugin",
52 getNoticeText(), 53 getNoticeText(),
53 QMessageBox::Warning, 54 QMessageBox::Warning,
54 QMessageBox::Yes, 55 QMessageBox::Yes,
55 0, 56 0,
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 {
69 case QMessageBox::Yes: 70 case QMessageBox::Yes:
70 return MultiauthPluginObject::Success; 71 return MultiauthPluginObject::Success;
71 } 72 }
72 return 255; //should not be returned anyway 73 return 255; //should not be returned anyway
73} 74}
74 75