author | eilers <eilers> | 2003-08-08 14:45:49 (UTC) |
---|---|---|
committer | eilers <eilers> | 2003-08-08 14:45:49 (UTC) |
commit | 14d394e6c107b037a09a31a92605034fe50f7813 (patch) (unidiff) | |
tree | 800699cf4dc9681c3eb023340634dd6a15fd04c8 /library/qpemessagebox.cpp | |
parent | dbc6ea35f5535a1f69deb7ebbafc0f721721dbf2 (diff) | |
download | opie-14d394e6c107b037a09a31a92605034fe50f7813.zip opie-14d394e6c107b037a09a31a92605034fe50f7813.tar.gz opie-14d394e6c107b037a09a31a92605034fe50f7813.tar.bz2 |
Merged branches from BRANCH_1_0
-rw-r--r-- | library/qpemessagebox.cpp | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/library/qpemessagebox.cpp b/library/qpemessagebox.cpp index 02db760..13c45f1 100644 --- a/library/qpemessagebox.cpp +++ b/library/qpemessagebox.cpp | |||
@@ -1,13 +1,33 @@ | |||
1 | #include "stringutil.h" | ||
2 | |||
1 | #include "qpemessagebox.h" | 3 | #include "qpemessagebox.h" |
2 | #include <qmessagebox.h> | 4 | #include <qmessagebox.h> |
3 | 5 | ||
6 | static void never_called_tr_function_um_libqpe_ts_etwas_unter_zu_jubeln() { | ||
7 | (void)QMessageBox::tr("Yes"); | ||
8 | (void)QMessageBox::tr("No"); | ||
9 | } | ||
10 | |||
11 | |||
12 | /*! | ||
13 | \class QPEMessageBox qpemessagebox.h | ||
14 | \brief A message box that provides yes, no and cancel options. | ||
15 | |||
16 | \ingroup qtopiaemb | ||
17 | */ | ||
18 | |||
19 | /*! | ||
20 | Displays a QMessageBox with parent \a parent and caption \a caption. | ||
21 | The message displayed is "Are you sure you want to delete: ", | ||
22 | followed by \a object. | ||
23 | */ | ||
4 | bool QPEMessageBox::confirmDelete( QWidget *parent, const QString & caption, | 24 | bool QPEMessageBox::confirmDelete( QWidget *parent, const QString & caption, |
5 | const QString & object ) | 25 | const QString & object ) |
6 | { | 26 | { |
7 | QString msg = QObject::tr("Are you sure you want to delete\n %1?").arg( object ); | 27 | QString msg = QObject::tr("<qt>Are you sure you want to delete\n %1?</qt>").arg( Qtopia::escapeString( object ) ); // use <qt> an esacpe String.... |
8 | int r = QMessageBox::warning( parent, caption, msg, QMessageBox::Yes, | 28 | int r = QMessageBox::warning( parent, caption, msg, QMessageBox::Yes, |
9 | QMessageBox::No|QMessageBox::Default| | 29 | QMessageBox::No|QMessageBox::Default| |
10 | QMessageBox::Escape, 0 ); | 30 | QMessageBox::Escape, 0 ); |
11 | 31 | ||
12 | return r == QMessageBox::Yes; | 32 | return r == QMessageBox::Yes; |
13 | } | 33 | } |