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
Marco Bubke
flatpak-qt-creator
Commits
8e826862
Commit
8e826862
authored
Feb 20, 2009
by
con
Browse files
Fixes: - Don't override mac app icon via setWindowIcon.
parent
2fbbdca9
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/coreplugin/mainwindow.cpp
View file @
8e826862
...
...
@@ -151,7 +151,9 @@ MainWindow::MainWindow() :
OutputPaneManager
::
create
();
setWindowTitle
(
tr
(
"Qt Creator"
));
#ifndef Q_OS_MAC
qApp
->
setWindowIcon
(
QIcon
(
":/core/images/qtcreator_logo_128.png"
));
#endif
QCoreApplication
::
setApplicationName
(
QLatin1String
(
"QtCreator"
));
QCoreApplication
::
setApplicationVersion
(
QLatin1String
(
Core
::
Constants
::
IDE_VERSION_LONG
));
QCoreApplication
::
setOrganizationName
(
QLatin1String
(
"Nokia"
));
...
...
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