Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
SDK
Cervisia
Commits
23bc3550
Commit
23bc3550
authored
Sep 13, 2001
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor fix
svn path=/trunk/kdesdk/cervisia/; revision=114121
parent
2ef934fd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
checkoutdlg.cpp
checkoutdlg.cpp
+4
-2
No files found.
checkoutdlg.cpp
View file @
23bc3550
...
...
@@ -289,7 +289,9 @@ void CheckoutDialog::saveOptions(KConfig *config)
void
CheckoutDialog
::
dirButtonClicked
()
{
workdir_edit
->
setText
(
KFileDialog
::
getExistingDirectory
(
workdir_edit
->
text
()));
QString
path
=
KFileDialog
::
getExistingDirectory
(
workdir_edit
->
text
());
if
(
!
path
.
isEmpty
())
workdir_edit
->
setText
(
path
);
}
...
...
@@ -301,7 +303,7 @@ void CheckoutDialog::moduleButtonClicked()
cmdline
+=
" checkout -c"
;
CvsProgressDialog
l
(
"Checkout"
,
this
);
l
.
setCaption
(
"CVS Checkout"
);
l
.
setCaption
(
i18n
(
"CVS Checkout"
)
)
;
if
(
!
l
.
execCommand
(
""
,
repository
(),
cmdline
,
"checkout"
))
return
;
...
...
Write
Preview
Markdown
is supported
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