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
Marco Bubke
flatpak-qt-creator
Commits
246671c4
Commit
246671c4
authored
May 06, 2009
by
Alessandro Portale
Browse files
Don't annoy Windows users with alien dir separators
parent
f7ec42a2
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/coreplugin/dialogs/saveitemsdialog.cpp
View file @
246671c4
...
...
@@ -69,7 +69,7 @@ SaveItemsDialog::SaveItemsDialog(QWidget *parent,
visibleName
=
info
.
fileName
();
}
QTreeWidgetItem
*
item
=
new
QTreeWidgetItem
(
m_ui
.
treeWidget
,
QStringList
()
<<
visibleName
<<
directory
);
<<
visibleName
<<
QDir
::
toNativeSeparators
(
directory
)
)
;
item
->
setData
(
0
,
Qt
::
UserRole
,
qVariantFromValue
(
file
));
}
...
...
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