summaryrefslogtreecommitdiffstats
path: root/konqueror
diff options
context:
space:
mode:
Diffstat (limited to 'konqueror')
-rw-r--r--konqueror/client/kfmclient.cc2
-rwxr-xr-xkonqueror/convert_kdelnk.sh4
2 files changed, 3 insertions, 3 deletions
diff --git a/konqueror/client/kfmclient.cc b/konqueror/client/kfmclient.cc
index dcb508dc8..f8533ef17 100644
--- a/konqueror/client/kfmclient.cc
+++ b/konqueror/client/kfmclient.cc
@@ -96,7 +96,7 @@ extern "C" KDE_EXPORT int kdemain( int argc, char **argv )
puts(i18n(" kfmclient openProfile 'profile' ['url']\n"
" # Opens a window using the given profile.\n"
- " # 'profile' is a file under ~/.kde/share/apps/konqueror/profiles.\n"
+ " # 'profile' is a file under ~/.trinity/share/apps/konqueror/profiles.\n"
" # 'url' is an optional URL to open.\n\n").local8Bit());
puts(i18n(" kfmclient openProperties 'url'\n"
diff --git a/konqueror/convert_kdelnk.sh b/konqueror/convert_kdelnk.sh
index 02ed247e6..0acc799ad 100755
--- a/konqueror/convert_kdelnk.sh
+++ b/konqueror/convert_kdelnk.sh
@@ -3,7 +3,7 @@
# Converts all user's .kdelnk files to .desktop
# Necessary to avoid duplication when saving a mimetype or an applnk
-find ~/.kde/share/mimelnk ~/.kde/share/applnk -name "*.kdelnk" -print |
+find ~/.trinity/share/mimelnk ~/.trinity/share/applnk -name "*.kdelnk" -print |
while read k; do
d=`echo $k|sed -e 's/\.kdelnk/\.desktop/'`
echo "Renaming $k to $d"
@@ -11,7 +11,7 @@ find ~/.kde/share/mimelnk ~/.kde/share/applnk -name "*.kdelnk" -print |
done
# Convert user's bookmarks to .desktop and to remove .xpm from icons
-find ~/.kde/share/apps/kfm/bookmarks -type f -print |
+find ~/.trinity/share/apps/kfm/bookmarks -type f -print |
while read k; do
if echo $k | grep -q kdelnk; then # kdelnk file
d=`echo $k|sed -e 's/\.kdelnk/\.desktop/'`