-rw-r--r-- | microkde/kapplication.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/microkde/kapplication.cpp b/microkde/kapplication.cpp index 56c01af..d6f556d 100644 --- a/microkde/kapplication.cpp +++ b/microkde/kapplication.cpp | |||
@@ -33,17 +33,19 @@ QString KApplication::randomString(int length) | |||
33 | return str; | 33 | return str; |
34 | } | 34 | } |
35 | int KApplication::execDialog( QDialog* d ) | 35 | int KApplication::execDialog( QDialog* d ) |
36 | { | 36 | { |
37 | if (QApplication::desktop()->width() <= 640 ) | 37 | if (QApplication::desktop()->width() <= 640 ) |
38 | d->showMaximized(); | 38 | d->showMaximized(); |
39 | else | ||
40 | ;//d->resize( 800, 600 ); | ||
39 | return d->exec(); | 41 | return d->exec(); |
40 | } | 42 | } |
41 | void KApplication::showLicence() | 43 | void KApplication::showLicence() |
42 | { | 44 | { |
43 | KApplication::showFile( "KDE-Pim/Pi licence", "kdepim/LICENCE.TXT" ); | 45 | KApplication::showFile( "KDE-Pim/Pi licence", "kdepim/licence.txt" ); |
44 | } | 46 | } |
45 | 47 | ||
46 | void KApplication::showFile(QString caption, QString fn) | 48 | void KApplication::showFile(QString caption, QString fn) |
47 | { | 49 | { |
48 | QString text; | 50 | QString text; |
49 | QString fileName; | 51 | QString fileName; |