-rw-r--r-- | microkde/kapplication.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/microkde/kapplication.h b/microkde/kapplication.h index 47e64e7..77206f5 100644 --- a/microkde/kapplication.h +++ b/microkde/kapplication.h | |||
@@ -1,21 +1,23 @@ | |||
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 | 6 | ||
6 | class KApplication | 7 | class KApplication |
7 | { | 8 | { |
8 | public: | 9 | public: |
9 | static int random(); | 10 | static int random(); |
10 | 11 | ||
11 | //US | 12 | //US |
12 | /** | 13 | /** |
13 | * Generates a random string. It operates in the range [A-Za-z0-9] | 14 | * Generates a random string. It operates in the range [A-Za-z0-9] |
14 | * @param length Generate a string of this length. | 15 | * @param length Generate a string of this length. |
15 | * @return the random string | 16 | * @return the random string |
16 | */ | 17 | */ |
17 | static QString randomString(int length); | 18 | static QString randomString(int length); |
19 | static int execDialog( QDialog* ); | ||
18 | }; | 20 | }; |
19 | 21 | ||
20 | 22 | ||
21 | #endif | 23 | #endif |