a2380ac3f9
Changes: * kappfinder: Fixed button order * kdesktop: Fix switching desktops incurrs (seemingly) unrequired cpu load * konqueror: Fix textposition of bookmark toolbar not saved * konqueror: Fix [testcase] HTTP-EQUIV="refresh" not working with weird formating. * konqueror (khtml): Fix When dragging a URL link with an image, the image is pasted and not the link URL * konqueror (khtml): Basic support for the HTML ACCESSKEY attribute. * konqueror (khtml): Ctrl only suspends Shift+arrows scrolling. * konqueror (khtml event): Fix dragging an attachment icon to desktop copies icon! * konqueror: No "Actions" submenu with only one entry * konqueror: Shift inverses "open tabs in background" setting for Ctrl+left mouse button and "Open in New Tab" in context menu * kicker: Fix tooltips sometimes not disappearing. * konsole: Added support for Scroll Up (SU) and Scroll Down (SD) * konsole: Better compatibility with xterm/XF86 4.4.0 * konsole: Fixed sending of large blocks * konsole: Show session menu when you move the mouse. * Make various scripts install with the executable bit set * Fix various libraries' install locations and versioning
24 lines
685 B
Text
24 lines
685 B
Text
$NetBSD: patch-bb,v 1.4 2004/04/20 12:33:56 markd Exp $
|
|
|
|
--- kdesktop/init.cc.orig 2004-04-04 19:42:34.000000000 +1200
|
|
+++ kdesktop/init.cc
|
|
@@ -81,6 +81,9 @@ static void copyDirectoryFile(const QStr
|
|
cmd += " ";
|
|
cmd += KProcess::quote(dir+"/.directory");
|
|
system( QFile::encodeName(cmd) );
|
|
+ cmd = "chmod u+w ";
|
|
+ cmd += KProcess::quote(dir+"/.directory");
|
|
+ system( QFile::encodeName(cmd) );
|
|
}
|
|
}
|
|
|
|
@@ -114,6 +117,9 @@ void copyDesktopLinks()
|
|
cmd += " ";
|
|
cmd += QFile::encodeName(KProcess::quote(desktopPath));
|
|
system( cmd );
|
|
+ cmd = "chmod u+w ";
|
|
+ cmd += QFile::encodeName(KProcess::quote(desktopPath + desk.readName()));
|
|
+ system( cmd );
|
|
}
|
|
}
|
|
|