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-bookmark_global_copy.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-bookmark_global_copy.patch')
-rw-r--r-- | redhat/tdebase/tdebase-14.0.0-bookmark_global_copy.patch | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/redhat/tdebase/tdebase-14.0.0-bookmark_global_copy.patch b/redhat/tdebase/tdebase-14.0.0-bookmark_global_copy.patch new file mode 100644 index 000000000..0f8a68045 --- /dev/null +++ b/redhat/tdebase/tdebase-14.0.0-bookmark_global_copy.patch @@ -0,0 +1,27 @@ +--- ./libkonq/konqbookmarkmanager.h.ori 2013-05-08 23:26:03.558587419 +0200 ++++ ./libkonq/konqbookmarkmanager.h 2013-05-08 23:29:25.317517880 +0200 +@@ -3,6 +3,8 @@ + + #include <kbookmarkmanager.h> + #include <kstandarddirs.h> ++#include <kurl.h> ++#include <tdeio/job.h> + #include <libkonq_export.h> + + class LIBKONQ_EXPORT KonqBookmarkManager +@@ -11,7 +13,14 @@ + static KBookmarkManager * self() { + if ( !s_bookmarkManager ) + { +- TQString bookmarksFile = locateLocal("data", TQString::fromLatin1("konqueror/bookmarks.xml")); ++ TQString globalBookmarkFile = locate( "data", TQString::fromLatin1( "konqueror/bookmarks.xml" ) ); ++ TQString bookmarksFile = locateLocal( "data", TQString::fromLatin1("konqueror/bookmarks.xml" ), true); ++ if ( globalBookmarkFile != TQString::null && bookmarksFile == TQString::null ) { ++ TDEIO::file_copy( ++ KURL::fromPathOrURL( globalBookmarkFile ), ++ KURL::fromPathOrURL( bookmarksFile ), -1, false, false ++ ); ++ } + s_bookmarkManager = KBookmarkManager::managerForFile( bookmarksFile ); + } + return s_bookmarkManager; |