author | ulf69 <ulf69> | 2004-08-05 21:44:59 (UTC) |
---|---|---|
committer | ulf69 <ulf69> | 2004-08-05 21:44:59 (UTC) |
commit | bb1dd236b41cbd5cc4aed3b320801aa07974122d (patch) (unidiff) | |
tree | 4d07c4fc759d2926c8a48e49af59448d46a35a7b /microkde | |
parent | 6ee7d4f5119837f89ec534c8c5c73845d521e135 (diff) | |
download | kdepimpi-bb1dd236b41cbd5cc4aed3b320801aa07974122d.zip kdepimpi-bb1dd236b41cbd5cc4aed3b320801aa07974122d.tar.gz kdepimpi-bb1dd236b41cbd5cc4aed3b320801aa07974122d.tar.bz2 |
additional change for the tmp resourcetype
-rw-r--r-- | microkde/kdecore/kstandarddirs.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/microkde/kdecore/kstandarddirs.cpp b/microkde/kdecore/kstandarddirs.cpp index 75205d6..500426b 100644 --- a/microkde/kdecore/kstandarddirs.cpp +++ b/microkde/kdecore/kstandarddirs.cpp | |||
@@ -985,16 +985,19 @@ QString KStandardDirs::kde_default(const char *type) { | |||
985 | if (!strcmp(type, "qtplugins")) | 985 | if (!strcmp(type, "qtplugins")) |
986 | return "lib/kde3/plugins"; | 986 | return "lib/kde3/plugins"; |
987 | if (!strcmp(type, "xdgdata-apps")) | 987 | if (!strcmp(type, "xdgdata-apps")) |
988 | return "applications/"; | 988 | return "applications/"; |
989 | if (!strcmp(type, "xdgdata-dirs")) | 989 | if (!strcmp(type, "xdgdata-dirs")) |
990 | return "desktop-directories/"; | 990 | return "desktop-directories/"; |
991 | if (!strcmp(type, "xdgconf-menu")) | 991 | if (!strcmp(type, "xdgconf-menu")) |
992 | return "menus/"; | 992 | return "menus/"; |
993 | if (!strcmp(type, "tmp")) | ||
994 | return "tmp/"; | ||
995 | |||
993 | qFatal("unknown resource type %s", type); | 996 | qFatal("unknown resource type %s", type); |
994 | return QString::null; | 997 | return QString::null; |
995 | } | 998 | } |
996 | 999 | ||
997 | QString KStandardDirs::saveLocation(const char *type, | 1000 | QString KStandardDirs::saveLocation(const char *type, |
998 | const QString& suffix, | 1001 | const QString& suffix, |
999 | bool create) const | 1002 | bool create) const |
1000 | { | 1003 | { |