-rw-r--r-- | microkde/kapplication.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/microkde/kapplication.h b/microkde/kapplication.h index 41546a0..497ec2f 100644 --- a/microkde/kapplication.h +++ b/microkde/kapplication.h | |||
@@ -1,27 +1,30 @@ | |||
1 | #ifndef MINIKDE_KAPPLICATION_H | 1 | #ifndef MINIKDE_KAPPLICATION_H |
2 | #define MINIKDE_KAPPLICATION_H | 2 | #define MINIKDE_KAPPLICATION_H |
3 | 3 | ||
4 | #include "qstring.h" | 4 | #include "qstring.h" |
5 | #include <qdialog.h> | 5 | #include <qdialog.h> |
6 | #ifdef QDialog | ||
7 | #undef QDialog | ||
8 | #endif | ||
6 | 9 | ||
7 | class KApplication | 10 | class KApplication |
8 | { | 11 | { |
9 | public: | 12 | public: |
10 | static int random(); | 13 | static int random(); |
11 | 14 | ||
12 | //US | 15 | //US |
13 | /** | 16 | /** |
14 | * Generates a random string. It operates in the range [A-Za-z0-9] | 17 | * Generates a random string. It operates in the range [A-Za-z0-9] |
15 | * @param length Generate a string of this length. | 18 | * @param length Generate a string of this length. |
16 | * @return the random string | 19 | * @return the random string |
17 | */ | 20 | */ |
18 | static QString randomString(int length); | 21 | static QString randomString(int length); |
19 | static int execDialog( QDialog* ); | 22 | static int execDialog( QDialog* ); |
20 | static void showLicence(); | 23 | static void showLicence(); |
21 | static void showFile(QString caption, QString file); | 24 | static void showFile(QString caption, QString file); |
22 | static void showText(QString caption, QString text); | 25 | static void showText(QString caption, QString text); |
23 | static bool convert2latin1(QString file); | 26 | static bool convert2latin1(QString file); |
24 | }; | 27 | }; |
25 | 28 | ||
26 | 29 | ||
27 | #endif | 30 | #endif |