-rw-r--r-- | microkde/kapplication.cpp | 9 |
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 @@ -59,9 +59,14 @@ void KApplication::showFile(QString caption, QString fn) } QTextStream ts( &file ); text = ts.read(); file.close(); - + KApplication::showText( caption, text ); + +} + +void KApplication::showText(QString caption, QString text) +{ QDialog dia( 0, "name", true ); ; dia.setCaption( caption ); QVBoxLayout* lay = new QVBoxLayout( &dia ); lay->setSpacing( 3 ); @@ -74,6 +79,6 @@ void KApplication::showFile(QString caption, QString fn) #else dia.showMaximized(); #endif dia.exec(); - + } |