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
e5ec0645
Commit
e5ec0645
authored
Jun 09, 2009
by
Daniel Molkentin
Browse files
Use native separators on Windows.
Reviewed-By:
Thorbjorn Lindeijer
<
thorbjorn.lindeijer@nokia.com
>
parent
1d50f024
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/projectexplorer/removefiledialog.cpp
View file @
e5ec0645
...
...
@@ -30,6 +30,8 @@
#include "removefiledialog.h"
#include "ui_removefiledialog.h"
#include <QtCore/QDir>
using
namespace
ProjectExplorer
::
Internal
;
RemoveFileDialog
::
RemoveFileDialog
(
const
QString
&
filePath
,
QWidget
*
parent
)
:
...
...
@@ -37,7 +39,7 @@ RemoveFileDialog::RemoveFileDialog(const QString &filePath, QWidget *parent) :
m_ui
(
new
Ui
::
RemoveFileDialog
)
{
m_ui
->
setupUi
(
this
);
m_ui
->
fileNameLabel
->
setText
(
filePath
);
m_ui
->
fileNameLabel
->
setText
(
QDir
::
toNativeSeparators
(
filePath
)
)
;
// TODO
m_ui
->
removeVCCheckBox
->
setVisible
(
false
);
...
...
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