aboutsummaryrefslogtreecommitdiffstats
path: root/doc/pluginhowto
diff options
context:
space:
mode:
authorFelix Geyer <debfx@fobos.de>2011-05-23 12:29:43 +0200
committerDaniel Molkentin <daniel.molkentin@nokia.com>2011-05-23 12:56:18 +0200
commitea9b7fb5e557bb59fa9ece01e87d33106e763fc0 (patch)
tree4cbb3836e6da7e460c45bf2cbb60bb69a5393f95 /doc/pluginhowto
parent566ae4cc466752382a62bc7a8f73d07808694ed2 (diff)
On unix: install the application icons according to the freedesktop spec.
This allows desktop environments to pick the right icon size when displaying the Qt Creator menu entry. Change-Id: I10f6b46fb99202571d081a5e6e4d680be7ca069f Merge-request: 328 Reviewed-by: Daniel Molkentin <daniel.molkentin@nokia.com> Reviewed-on: http://codereview.qt.nokia.com/64
Diffstat (limited to 'doc/pluginhowto')
-rw-r--r--doc/pluginhowto/examples/loggermode/loggermode.cpp2
-rw-r--r--doc/pluginhowto/mode.qdoc2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/pluginhowto/examples/loggermode/loggermode.cpp b/doc/pluginhowto/examples/loggermode/loggermode.cpp
index f43339353d0..682c6002461 100644
--- a/doc/pluginhowto/examples/loggermode/loggermode.cpp
+++ b/doc/pluginhowto/examples/loggermode/loggermode.cpp
@@ -144,7 +144,7 @@ QString LoggerMode::name() const
QIcon LoggerMode::icon() const
{
- return QIcon(QLatin1String(":/core/images/qtcreator_logo_32.png"));
+ return QIcon(QLatin1String(":/core/images/logo/32/qtcreator.png"));
}
diff --git a/doc/pluginhowto/mode.qdoc b/doc/pluginhowto/mode.qdoc
index bf421e949a3..f777bf83ba9 100644
--- a/doc/pluginhowto/mode.qdoc
+++ b/doc/pluginhowto/mode.qdoc
@@ -147,7 +147,7 @@ The \bold {icon()} method returns a logo for the new mode selector.
\code
QIcon LoggerMode::icon() const
{
- return QIcon(QLatin1String(":/core/images/qtcreator_logo_32.png"));
+ return QIcon(QLatin1String(":/core/images/logo/32/qtcreator.png"));
}
\endcode