-rw-r--r-- | microkde/kglobal.cpp | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/microkde/kglobal.cpp b/microkde/kglobal.cpp index 2b1bd34..bf7e238 100644 --- a/microkde/kglobal.cpp +++ b/microkde/kglobal.cpp | |||
@@ -14,10 +14,10 @@ KLocale *KGlobal::locale() | |||
14 | { | 14 | { |
15 | if ( !mLocale ) { | 15 | if ( !mLocale ) { |
16 | ASSERT(mAppName); | 16 | ASSERT(mAppName); |
17 | 17 | ||
18 | mLocale = new KLocale();//mAppName); | 18 | mLocale = new KLocale();//mAppName); |
19 | } | 19 | } |
20 | 20 | ||
21 | return mLocale; | 21 | return mLocale; |
22 | } | 22 | } |
23 | 23 | ||
@@ -32,14 +32,16 @@ KConfig *KGlobal::config() | |||
32 | //mConfig is set inside setAppName. Though it has to be the first function you call. | 32 | //mConfig is set inside setAppName. Though it has to be the first function you call. |
33 | return mConfig; | 33 | return mConfig; |
34 | } | 34 | } |
35 | 35 | ||
36 | KGlobal::Size KGlobal::getDesktopSize() | 36 | KGlobal::Size KGlobal::getDesktopSize() |
37 | { | 37 | { |
38 | #ifdef DESKTOP_VERSION | 38 | #ifdef DESKTOP_VERSION |
39 | return KGlobal::Desktop; | 39 | return KGlobal::Desktop; |
40 | #else | 40 | #else |
41 | if ( QApplication::desktop()->width() < 480 ) | 41 | if ( QApplication::desktop()->width() <= 320 ) |
42 | return KGlobal::Small; | 42 | return KGlobal::Small; |
43 | else if ( QApplication::desktop()->width() > 480) | ||
44 | return KGlobal::Desktop; | ||
43 | else | 45 | else |
44 | return KGlobal::Medium; | 46 | return KGlobal::Medium; |
45 | #endif | 47 | #endif |
@@ -69,7 +71,7 @@ KIconLoader *KGlobal::iconLoader() | |||
69 | if ( !mIconLoader ) { | 71 | if ( !mIconLoader ) { |
70 | mIconLoader = new KIconLoader(); | 72 | mIconLoader = new KIconLoader(); |
71 | } | 73 | } |
72 | 74 | ||
73 | return mIconLoader; | 75 | return mIconLoader; |
74 | } | 76 | } |
75 | 77 | ||
@@ -78,14 +80,14 @@ KStandardDirs *KGlobal::dirs() | |||
78 | if ( !mDirs ) { | 80 | if ( !mDirs ) { |
79 | mDirs = new KStandardDirs(); | 81 | mDirs = new KStandardDirs(); |
80 | } | 82 | } |
81 | 83 | ||
82 | return mDirs; | 84 | return mDirs; |
83 | } | 85 | } |
84 | 86 | ||
85 | void KGlobal::setAppName( const QString &appName ) | 87 | void KGlobal::setAppName( const QString &appName ) |
86 | { | 88 | { |
87 | mAppName = appName; | 89 | mAppName = appName; |
88 | 90 | ||
89 | mConfig = new KConfig( locateLocal("config", mAppName + "rc" ) ); | 91 | mConfig = new KConfig( locateLocal("config", mAppName + "rc" ) ); |
90 | } | 92 | } |
91 | 93 | ||
@@ -95,7 +97,7 @@ QString KGlobal::getAppName() | |||
95 | return mAppName; | 97 | return mAppName; |
96 | } | 98 | } |
97 | QString KGlobal::formatMessage ( QString mess, int maxlen ) | 99 | QString KGlobal::formatMessage ( QString mess, int maxlen ) |
98 | { | 100 | { |
99 | //int maxlen = 80; | 101 | //int maxlen = 80; |
100 | int start = 0; | 102 | int start = 0; |
101 | int end = mess.length(); | 103 | int end = mess.length(); |