author | mickeyl <mickeyl> | 2003-01-24 08:19:32 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2003-01-24 08:19:32 (UTC) |
commit | 26c23e7fe51181d552bd81877feb8fa1b5ced0e3 (patch) (unidiff) | |
tree | 4b00433f1d3e3901d64ed0135b6ed2b31c6ec96a | |
parent | f4dee585d608db812b5973dfc5e631a2ca4fa279 (diff) | |
download | opie-26c23e7fe51181d552bd81877feb8fa1b5ced0e3.zip opie-26c23e7fe51181d552bd81877feb8fa1b5ced0e3.tar.gz opie-26c23e7fe51181d552bd81877feb8fa1b5ced0e3.tar.bz2 |
trivial ISO compliance fix for gcc 3.2
-rw-r--r-- | noncore/apps/tinykate/libkate/microkde/kmessagebox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/apps/tinykate/libkate/microkde/kmessagebox.cpp b/noncore/apps/tinykate/libkate/microkde/kmessagebox.cpp index fd305cd..94b9b5d 100644 --- a/noncore/apps/tinykate/libkate/microkde/kmessagebox.cpp +++ b/noncore/apps/tinykate/libkate/microkde/kmessagebox.cpp | |||
@@ -31,7 +31,7 @@ int KMessageBox::questionYesNo(QWidget *parent, | |||
31 | const QString &text, | 31 | const QString &text, |
32 | const QString &textYes, | 32 | const QString &textYes, |
33 | const QString &textNo, | 33 | const QString &textNo, |
34 | bool notify=true ) | 34 | bool notify ) |
35 | { | 35 | { |
36 | int result =QMessageBox::warning(parent,i18n("Question"),text,textYes,textNo); | 36 | int result =QMessageBox::warning(parent,i18n("Question"),text,textYes,textNo); |
37 | if ( result == 0 ) return KMessageBox::Yes; | 37 | if ( result == 0 ) return KMessageBox::Yes; |