diff options
author | François Andriot <albator78@libertysurf.fr> | 2013-07-19 20:47:36 +0200 |
---|---|---|
committer | François Andriot <albator78@libertysurf.fr> | 2013-07-19 20:47:36 +0200 |
commit | 81cfe3de65065da2e9693971b05ee35cca6bf483 (patch) | |
tree | fa557dc984def90bd9bcbc44e8c98c65923ecd94 /redhat/tdebase/tdebase-14.0.0-kickoff_xdg_dirs.patch | |
parent | 04dea0b400cc28566c4a09214a332a2360f8ed3b (diff) | |
download | tde-packaging-81cfe3de65065da2e9693971b05ee35cca6bf483.tar.gz tde-packaging-81cfe3de65065da2e9693971b05ee35cca6bf483.zip |
RPM Packaging: more updates
Diffstat (limited to 'redhat/tdebase/tdebase-14.0.0-kickoff_xdg_dirs.patch')
-rw-r--r-- | redhat/tdebase/tdebase-14.0.0-kickoff_xdg_dirs.patch | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/redhat/tdebase/tdebase-14.0.0-kickoff_xdg_dirs.patch b/redhat/tdebase/tdebase-14.0.0-kickoff_xdg_dirs.patch new file mode 100644 index 000000000..0a692c42b --- /dev/null +++ b/redhat/tdebase/tdebase-14.0.0-kickoff_xdg_dirs.patch @@ -0,0 +1,45 @@ +--- ./kicker/kicker/ui/k_new_mnu.cpp.ori 2013-05-08 21:56:01.084691260 +0200 ++++ ./kicker/kicker/ui/k_new_mnu.cpp 2013-05-08 21:58:02.086130445 +0200 +@@ -1428,6 +1428,42 @@ + m_systemView->insertItem( "folder_man", i18n( "My Documents" ), documentPath, documentPath, nId++, index++ ); + } + ++ if ( TDEStandardDirs::exists( TDEGlobalSettings::picturesPath() + "/" ) ) ++ { ++ TQString picturesPath = TDEGlobalSettings::picturesPath(); ++ if ( picturesPath.endsWith( "/" ) ) ++ picturesPath = picturesPath.left( picturesPath.length() - 1 ); ++ if (picturesPath!=TQDir::homeDirPath()) ++ m_systemView->insertItem( "folder_image", i18n( "My Images" ), picturesPath, picturesPath, nId++, index++ ); ++ } ++ ++ if ( TDEStandardDirs::exists( TDEGlobalSettings::musicPath() + "/" ) ) ++ { ++ TQString musicPath = TDEGlobalSettings::musicPath(); ++ if ( musicPath.endsWith( "/" ) ) ++ musicPath = musicPath.left( musicPath.length() - 1 ); ++ if (musicPath!=TQDir::homeDirPath()) ++ m_systemView->insertItem( "folder_sound", i18n( "My Music" ), musicPath, musicPath, nId++, index++ ); ++ } ++ ++ if ( TDEStandardDirs::exists( TDEGlobalSettings::videosPath() + "/" ) ) ++ { ++ TQString videosPath = TDEGlobalSettings::videosPath(); ++ if ( videosPath.endsWith( "/" ) ) ++ videosPath = videosPath.left( videosPath.length() - 1 ); ++ if (videosPath!=TQDir::homeDirPath()) ++ m_systemView->insertItem( "folder_video", i18n( "My Videos" ), videosPath, videosPath, nId++, index++ ); ++ } ++ ++ if ( TDEStandardDirs::exists( TDEGlobalSettings::downloadPath() + "/" ) ) ++ { ++ TQString downloadPath = TDEGlobalSettings::downloadPath(); ++ if ( downloadPath.endsWith( "/" ) ) ++ downloadPath = downloadPath.left( downloadPath.length() - 1 ); ++ if (downloadPath!=TQDir::homeDirPath()) ++ m_systemView->insertItem( "folder_inbox", i18n( "My Downloads" ), downloadPath, downloadPath, nId++, index++ ); ++ } ++ + m_systemView->insertItem( "network", i18n( "Network Folders" ), + "remote:/", "remote:/", nId++, index++ ); + |