author | eilers <eilers> | 2003-08-08 14:45:49 (UTC) |
---|---|---|
committer | eilers <eilers> | 2003-08-08 14:45:49 (UTC) |
commit | 14d394e6c107b037a09a31a92605034fe50f7813 (patch) (side-by-side diff) | |
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 @@ +#include "stringutil.h" + #include "qpemessagebox.h" #include <qmessagebox.h> +static void never_called_tr_function_um_libqpe_ts_etwas_unter_zu_jubeln() { +(void)QMessageBox::tr("Yes"); +(void)QMessageBox::tr("No"); +} + + +/*! + \class QPEMessageBox qpemessagebox.h + \brief A message box that provides yes, no and cancel options. + + \ingroup qtopiaemb + */ + +/*! + Displays a QMessageBox with parent \a parent and caption \a caption. + The message displayed is "Are you sure you want to delete: ", + followed by \a object. + */ bool QPEMessageBox::confirmDelete( QWidget *parent, const QString & caption, const QString & object ) { - QString msg = QObject::tr("Are you sure you want to delete\n %1?").arg( object ); + QString msg = QObject::tr("<qt>Are you sure you want to delete\n %1?</qt>").arg( Qtopia::escapeString( object ) ); // use <qt> an esacpe String.... int r = QMessageBox::warning( parent, caption, msg, QMessageBox::Yes, QMessageBox::No|QMessageBox::Default| QMessageBox::Escape, 0 ); return r == QMessageBox::Yes; } |