Skip to content
GitLab
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
03fb468d
Commit
03fb468d
authored
Apr 15, 2009
by
Alessandro Portale
Browse files
Don't annoy Windows users with alien dir separators
parent
9c57693a
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/qt4runconfiguration.cpp
View file @
03fb468d
...
...
@@ -200,8 +200,8 @@ void Qt4RunConfigurationWidget::usingDyldImageSuffixChanged(bool state)
void
Qt4RunConfigurationWidget
::
effectiveTargetInformationChanged
()
{
if
(
m_isShown
)
{
m_executableLabel
->
setText
(
m_qt4RunConfiguration
->
executable
());
m_workingDirectoryLabel
->
setText
(
m_qt4RunConfiguration
->
workingDirectory
());
m_executableLabel
->
setText
(
QDir
::
toNativeSeparators
(
m_qt4RunConfiguration
->
executable
())
)
;
m_workingDirectoryLabel
->
setText
(
QDir
::
toNativeSeparators
(
m_qt4RunConfiguration
->
workingDirectory
())
)
;
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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