summaryrefslogtreecommitdiff
path: root/noncore/apps/tinykate
Unidiff
Diffstat (limited to 'noncore/apps/tinykate') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/tinykate/libkate/microkde/kmessagebox.cpp2
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
@@ -1,82 +1,82 @@
1#include "kmessagebox.h" 1#include "kmessagebox.h"
2#include "klocale.h" 2#include "klocale.h"
3 3
4#include <qmessagebox.h> 4#include <qmessagebox.h>
5 5
6void KMessageBox::sorry( QWidget *parent, 6void KMessageBox::sorry( QWidget *parent,
7 const QString &text, 7 const QString &text,
8 const QString &caption, bool ) 8 const QString &caption, bool )
9{ 9{
10 QString cap = caption; 10 QString cap = caption;
11 11
12 if (cap.isEmpty()) { 12 if (cap.isEmpty()) {
13 cap = i18n("Sorry"); 13 cap = i18n("Sorry");
14 } 14 }
15 15
16 QMessageBox::warning( parent, cap, text ); 16 QMessageBox::warning( parent, cap, text );
17} 17}
18 18
19int KMessageBox::warningYesNoCancel(QWidget *parent, const QString &text) 19int KMessageBox::warningYesNoCancel(QWidget *parent, const QString &text)
20{ 20{
21 int result = QMessageBox::warning(parent,i18n("Warning"),text,QMessageBox::Yes, 21 int result = QMessageBox::warning(parent,i18n("Warning"),text,QMessageBox::Yes,
22 QMessageBox::No, QMessageBox::Cancel); 22 QMessageBox::No, QMessageBox::Cancel);
23 switch (result) { 23 switch (result) {
24 case QMessageBox::Yes: return Yes; 24 case QMessageBox::Yes: return Yes;
25 case QMessageBox::No: return No; 25 case QMessageBox::No: return No;
26 case QMessageBox::Cancel: return Cancel; 26 case QMessageBox::Cancel: return Cancel;
27 } 27 }
28} 28}
29 29
30int KMessageBox::questionYesNo(QWidget *parent, 30int 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;
38 return KMessageBox::No; 38 return KMessageBox::No;
39} 39}
40 40
41 41
42 42
43 43
44int KMessageBox::warningContinueCancel( QWidget *parent, 44int KMessageBox::warningContinueCancel( QWidget *parent,
45 const QString &text, 45 const QString &text,
46 const QString &caption, 46 const QString &caption,
47 const QString &buttonContinue, 47 const QString &buttonContinue,
48 const QString &dontAskAgainName, 48 const QString &dontAskAgainName,
49 bool notify ) 49 bool notify )
50{ 50{
51 QString cap = caption; 51 QString cap = caption;
52 52
53 if (cap.isEmpty()) { 53 if (cap.isEmpty()) {
54 cap = i18n("Warning"); 54 cap = i18n("Warning");
55 } 55 }
56 56
57 int result = QMessageBox::warning( parent, cap, text, i18n("Ok"), 57 int result = QMessageBox::warning( parent, cap, text, i18n("Ok"),
58 i18n("Cancel") ); 58 i18n("Cancel") );
59 59
60 if ( result == 0 ) return KMessageBox::Continue; 60 if ( result == 0 ) return KMessageBox::Continue;
61 return KMessageBox::Cancel; 61 return KMessageBox::Cancel;
62} 62}
63 63
64void KMessageBox::error( QWidget *parent, 64void KMessageBox::error( QWidget *parent,
65 const QString &text, 65 const QString &text,
66 const QString &caption, bool notify ) 66 const QString &caption, bool notify )
67{ 67{
68 QString cap = caption; 68 QString cap = caption;
69 69
70 if (cap.isEmpty()) { 70 if (cap.isEmpty()) {
71 cap = i18n("Error"); 71 cap = i18n("Error");
72 } 72 }
73 73
74 QMessageBox::critical( parent, cap, text ); 74 QMessageBox::critical( parent, cap, text );
75} 75}
76 76
77void KMessageBox::information( QWidget *parent, 77void KMessageBox::information( QWidget *parent,
78 const QString &text, 78 const QString &text,
79 const QString &caption, 79 const QString &caption,
80 const QString &, 80 const QString &,
81 bool ) 81 bool )
82{ 82{