Debugger: Move debugger icons from core to debugger

These three images are exclusively used in the Debugger
plugin, thus belong into the Debugger resources.

Change-Id: I327236c66f7424b8bec94630972844175b793fad
Reviewed-by: Eike Ziller <eike.ziller@digia.com>
Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
Alessandro Portale
2014-06-01 23:01:50 +02:00
committed by hjk
parent b711e8aee0
commit 0b9a8edae8
8 changed files with 5 additions and 5 deletions

View File

@@ -51,7 +51,6 @@
<file>images/extension.png</file>
<file>images/darkclosebutton.png</file>
<file>images/darkclosebutton@2x.png</file>
<file>images/category_debug.png</file>
<file>images/category_core.png</file>
<file>images/category_texteditor.png</file>
<file>images/category_help.png</file>

View File

@@ -1,7 +1,5 @@
<RCC>
<qresource prefix="/fancyactionbar">
<file>images/mode_Debug.png</file>
<file>images/mode_Debug@2x.png</file>
<file>images/mode_Edit.png</file>
<file>images/mode_Edit@2x.png</file>
<file>images/mode_Output.png</file>

View File

@@ -1,5 +1,6 @@
<RCC>
<qresource prefix="/debugger">
<file>images/category_debug.png</file>
<file>images/debugger_breakpoints.png</file>
<file>images/debugger_continue.png</file>
<file>images/debugger_continue_small.png</file>
@@ -28,6 +29,8 @@
<file>images/breakpoint_pending_24.png</file>
<file>images/location_16.png</file>
<file>images/location_24.png</file>
<file>images/mode_debug.png</file>
<file>images/mode_debug@2x.png</file>
<file>images/pin.xpm</file>
<file>images/qml/zoom.png</file>
<file>images/qml/select.png</file>

View File

@@ -38,7 +38,7 @@ namespace Constants {
const char DEBUGGER_COMMON_SETTINGS_ID[] = "A.Common";
const char DEBUGGER_SETTINGS_CATEGORY[] = "O.Debugger";
const char DEBUGGER_SETTINGS_TR_CATEGORY[] = QT_TRANSLATE_NOOP("Debugger", "Debugger");
const char DEBUGGER_COMMON_SETTINGS_CATEGORY_ICON[] = ":/core/images/category_debug.png";
const char DEBUGGER_COMMON_SETTINGS_CATEGORY_ICON[] = ":/debugger/images/category_debug.png";
namespace Internal {
enum { debug = 0 };

View File

@@ -509,7 +509,7 @@ public:
setObjectName(QLatin1String("DebugMode"));
setContext(Context(CC::C_EDITORMANAGER, C_DEBUGMODE, CC::C_NAVIGATION_PANE));
setDisplayName(DebuggerPlugin::tr("Debug"));
setIcon(QIcon(QLatin1String(":/fancyactionbar/images/mode_Debug.png")));
setIcon(QIcon(QLatin1String(":/debugger/images/mode_debug.png")));
setPriority(85);
setId(MODE_DEBUG);
}

View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

Before

Width:  |  Height:  |  Size: 6.4 KiB

After

Width:  |  Height:  |  Size: 6.4 KiB