KDE_3_0_{RELEASE,BRANCH}: kicker bug

Bernhard Rosenkraenzer bero at redhat.de
Tue Apr 9 18:41:08 BST 2002


I've debugged the problem I've seen with changing any of the items in 
kicker as a new user - the changes couldn't be written because the 
standard config generated by kicker on first startup points to
$KDEDIR/share/apps/whatever/anything.desktop
which, of course, can't be overwritten by a user. Pointing to the relative 
whatever/anything.desktop makes much more sense, unless maybe we want 
kiosk mode...

--- kdebase-3.0.0/kicker/core/containerarea.cpp.foo Tue Apr  9 19:27:31 2002
+++ kdebase-3.0.0/kicker/core/containerarea.cpp Tue Apr  9 19:28:16 2002
@@ -158,7 +158,7 @@
         QString s = locate("apps", *it);
         if (s.isEmpty()) continue;

-        containers.append( new ServiceButtonContainer( viewport(), s ) );
+        containers.append( new ServiceButtonContainer( viewport(), *it ) 
);
     }

     PluginManager* manager = PluginManager::pluginManager();







More information about the kde-core-devel mailing list