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
Tobias Hunger
qt-creator
Commits
678488e7
Commit
678488e7
authored
Feb 10, 2009
by
hjk
Browse files
Fixes: compile fix
Details: setCurrentEditor was sudddenly private
parent
86427ecf
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/subversion/subversionplugin.cpp
View file @
678488e7
...
@@ -895,7 +895,7 @@ void SubversionPlugin::describe(const QString &source, const QString &changeNr)
...
@@ -895,7 +895,7 @@ void SubversionPlugin::describe(const QString &source, const QString &changeNr)
const
QString
id
=
diffArg
+
source
;
const
QString
id
=
diffArg
+
source
;
if
(
Core
::
IEditor
*
editor
=
locateEditor
(
"describeChange"
,
id
))
{
if
(
Core
::
IEditor
*
editor
=
locateEditor
(
"describeChange"
,
id
))
{
editor
->
createNew
(
description
);
editor
->
createNew
(
description
);
Core
::
EditorManager
::
instance
()
->
setCurrent
Editor
(
editor
);
Core
::
EditorManager
::
instance
()
->
activate
Editor
(
editor
);
}
else
{
}
else
{
const
QString
title
=
tr
(
"svn describe %1#%2"
).
arg
(
QFileInfo
(
source
).
fileName
(),
changeNr
);
const
QString
title
=
tr
(
"svn describe %1#%2"
).
arg
(
QFileInfo
(
source
).
fileName
(),
changeNr
);
Core
::
IEditor
*
newEditor
=
showOutputInEditor
(
title
,
description
,
VCSBase
::
DiffOutput
,
source
,
codec
);
Core
::
IEditor
*
newEditor
=
showOutputInEditor
(
title
,
description
,
VCSBase
::
DiffOutput
,
source
,
codec
);
...
...
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