[Konsole-devel] [Bug 102941] User created sessions with "~" (like "~/somescript") in execute field or error in command doesn't appear in menu
Kurt V.Hindenburg
kurt.hindenburg at kdemail.net
Fri Apr 1 16:53:21 UTC 2005
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=102941
------- Additional Comments From kurt.hindenburg kdemail net 2005-04-01 18:53 -------
CVS commit by hindenburg:
Use KShell::tildeExpand (thanks ossi).
CCBUGS: 102941
M +2 -11 konsole.cpp 1.528
--- kdebase/konsole/konsole/konsole.cpp #1.527:1.528
@ -109,4 +109,5 @ Time to start a requirement list.
#include <kaction.h>
+#include <kshell.h>
#include <qlabel.h>
#include <kpopupmenu.h>
@ -3069,15 +3070,5 @ void Konsole::addSessionCommand(const QS
exec = KRun::binaryName(exec, false);
-
- if ( exec.startsWith( "~/" ) ) { // ~/script
- exec = exec.remove( 0, 1 ); // ~
- exec = exec.prepend( QDir::homeDirPath() );
- } else if ( exec.startsWith( "~" ) ) { // ~user/script
- // FIXME: What do when ~user != ~ ?
- // We could check that user == current user... blah!
- kdWarning()<<"Unable to handle Exec=~user/ (use ~/ or full path): "<<exec<<" in "<<path.latin1()<<endl;
- return; // ignore
- }
-
+ exec = KShell::tildeExpand(exec);
QString pexec = KGlobal::dirs()->findExe(exec);
More information about the konsole-devel
mailing list