-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 | } |