Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Utilities
Konsole
Commits
5d95eeca
Commit
5d95eeca
authored
May 05, 2007
by
Robert Knight
Browse files
Include arguments when setting text of command field.
svn path=/branches/work/konsole-split-view/; revision=661272
parent
38ba5d0e
Changes
1
Hide whitespace changes
Inline
Side-by-side
konsole/EditProfileDialog.cpp
View file @
5d95eeca
...
...
@@ -101,7 +101,9 @@ void EditProfileDialog::setProfile(const QString& key)
void
EditProfileDialog
::
setupGeneralPage
(
const
Profile
*
info
)
{
_ui
->
profileNameEdit
->
setText
(
info
->
name
()
);
_ui
->
commandEdit
->
setText
(
info
->
command
()
);
ShellCommand
command
(
info
->
command
()
,
info
->
arguments
()
);
_ui
->
commandEdit
->
setText
(
command
.
fullCommand
()
);
KUrlCompletion
*
exeCompletion
=
new
KUrlCompletion
(
KUrlCompletion
::
ExeCompletion
);
exeCompletion
->
setDir
(
QString
::
null
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment