summaryrefslogtreecommitdiffabout
path: root/microkde/kapplication.cpp
Unidiff
Diffstat (limited to 'microkde/kapplication.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--microkde/kapplication.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/microkde/kapplication.cpp b/microkde/kapplication.cpp
index ad0b78e..98ef2f2 100644
--- a/microkde/kapplication.cpp
+++ b/microkde/kapplication.cpp
@@ -61,5 +61,10 @@ void KApplication::showFile(QString caption, QString fn)
61 text = ts.read(); 61 text = ts.read();
62 file.close(); 62 file.close();
63 63 KApplication::showText( caption, text );
64
65}
66
67void KApplication::showText(QString caption, QString text)
68{
64 QDialog dia( 0, "name", true ); ; 69 QDialog dia( 0, "name", true ); ;
65 dia.setCaption( caption ); 70 dia.setCaption( caption );
@@ -76,4 +81,4 @@ void KApplication::showFile(QString caption, QString fn)
76#endif 81#endif
77 dia.exec(); 82 dia.exec();
78 83
79} 84}