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
af14d9fc
Commit
af14d9fc
authored
Mar 22, 2010
by
hjk
Browse files
debugger: remove or rename a few images.
parent
481a7711
Changes
15
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/debugger.qrc
View file @
af14d9fc
<RCC>
<qresource prefix="/debugger">
<file>images/debugger_breakpoints.png</file>
<file>images/debugger_continue.png</file>
<file>images/debugger_continue_small.png</file>
<file>images/debugger_empty_14.png</file>
<file>images/debugger_interrupt.png</file>
<file>images/debugger_interrupt_small.png</file>
<file>images/debugger_reversemode_16.png</file>
<file>images/debugger_singleinstructionmode.png</file>
<file>images/debugger_snapshot_small.png</file>
<file>images/debugger_start.png</file>
<file>images/debugger_start_small.png</file>
<file>images/debugger_stepinto_small.png</file>
<file>images/debugger_steponeproc_small.png</file>
<file>images/debugger_stepout_small.png</file>
<file>images/debugger_stepover_small.png</file>
<file>images/debugger_steponeproc_small.png</file>
<file>images/debugger_stepoverproc_small.png</file>
<file>images/debugger_stop_small.png</file>
<file>images/delete.png</file>
<file>images/done.png</file>
<file>images/error.png</file>
<file>images/newitem.png</file>
<file>images/running.png</file>
<file>images/debugger_continue.png</file>
<file>images/debugger_interrupt.png</file>
<file>images/debugger_stop.png</file>
<file>images/SingleInstructionMode.png</file>
<file>images/reverse_16.png</file>
<file>images/debugger_stop_small.png</file>
<file>images/breakpoint_16.png</file>
<file>images/breakpoint_24.png</file>
<file>images/breakpoint_disabled_16.png</file>
...
...
@@ -29,7 +25,6 @@
<file>images/breakpoint_disabled_32.png</file>
<file>images/breakpoint_pending_16.png</file>
<file>images/breakpoint_pending_24.png</file>
<file>images/empty14.png</file>
<file>images/location_16.png</file>
<file>images/location_24.png</file>
</qresource>
...
...
src/plugins/debugger/debuggeractions.cpp
View file @
af14d9fc
...
...
@@ -163,7 +163,7 @@ DebuggerSettings *DebuggerSettings::instance()
item
->
setText
(
tr
(
"Operate by Instruction"
));
item
->
setCheckable
(
true
);
item
->
setDefaultValue
(
false
);
item
->
setIcon
(
QIcon
(
":/debugger/images/
S
ingle
I
nstruction
M
ode.png"
));
item
->
setIcon
(
QIcon
(
":/debugger/images/
debugger_s
ingle
i
nstruction
m
ode.png"
));
item
->
setToolTip
(
tr
(
"This switches the debugger to instruction-wise "
"operation mode. In this mode, stepping operates on single "
"instructions and the source location view also shows the "
...
...
src/plugins/debugger/debuggermanager.cpp
View file @
af14d9fc
...
...
@@ -521,7 +521,7 @@ void DebuggerManager::init()
d
->
m_actions
.
reverseDirectionAction
->
setCheckable
(
true
);
d
->
m_actions
.
reverseDirectionAction
->
setChecked
(
false
);
d
->
m_actions
.
reverseDirectionAction
->
setIcon
(
QIcon
(
":/debugger/images/reverse_16.png"
));
QIcon
(
":/debugger/images/
debugger_
reverse
mode
_16.png"
));
connect
(
d
->
m_actions
.
continueAction
,
SIGNAL
(
triggered
()),
this
,
SLOT
(
executeContinue
()));
...
...
src/plugins/debugger/images/Continue.png
deleted
100644 → 0
View file @
481a7711
2.27 KB
src/plugins/debugger/images/empty14.png
→
src/plugins/debugger/images/
debugger_
empty
_
14.png
View file @
af14d9fc
File moved
src/plugins/debugger/images/reverse.svg
→
src/plugins/debugger/images/
debugger_
reverse
mode
.svg
View file @
af14d9fc
File moved
src/plugins/debugger/images/reverse_16.png
→
src/plugins/debugger/images/
debugger_
reverse
mode
_16.png
View file @
af14d9fc
File moved
src/plugins/debugger/images/
S
ingle
I
nstruction
M
ode.png
→
src/plugins/debugger/images/
debugger_s
ingle
i
nstruction
m
ode.png
View file @
af14d9fc
File moved
src/plugins/debugger/images/delete.png
deleted
100644 → 0
View file @
481a7711
578 Bytes
src/plugins/debugger/images/done.png
deleted
100644 → 0
View file @
481a7711
235 Bytes
src/plugins/debugger/images/error.png
deleted
100644 → 0
View file @
481a7711
326 Bytes
src/plugins/debugger/images/newitem.png
deleted
100644 → 0
View file @
481a7711
239 Bytes
src/plugins/debugger/images/running.png
deleted
100644 → 0
View file @
481a7711
532 Bytes
src/plugins/debugger/snapshothandler.cpp
View file @
af14d9fc
...
...
@@ -112,7 +112,7 @@ QDebug operator<<(QDebug d, const SnapshotData &f)
SnapshotHandler
::
SnapshotHandler
(
QObject
*
parent
)
:
QAbstractTableModel
(
parent
),
m_positionIcon
(
QIcon
(
":/debugger/images/location_16.png"
)),
m_emptyIcon
(
QIcon
(
":/debugger/images/empty14.png"
))
m_emptyIcon
(
QIcon
(
":/debugger/images/
debugger_
empty
_
14.png"
))
{
m_currentIndex
=
0
;
connect
(
theDebuggerAction
(
OperateByInstruction
),
SIGNAL
(
triggered
()),
...
...
src/plugins/debugger/stackhandler.cpp
View file @
af14d9fc
...
...
@@ -115,7 +115,7 @@ QDebug operator<<(QDebug d, const StackFrame &f)
StackHandler
::
StackHandler
(
QObject
*
parent
)
:
QAbstractTableModel
(
parent
),
m_positionIcon
(
QIcon
(
":/debugger/images/location_16.png"
)),
m_emptyIcon
(
QIcon
(
":/debugger/images/empty14.png"
))
m_emptyIcon
(
QIcon
(
":/debugger/images/
debugger_
empty
_
14.png"
))
{
m_currentIndex
=
0
;
m_canExpand
=
false
;
...
...
@@ -289,7 +289,7 @@ ThreadsHandler::ThreadsHandler(QObject *parent) :
QAbstractTableModel
(
parent
),
m_currentIndex
(
0
),
m_positionIcon
(
QLatin1String
(
":/debugger/images/location_16.png"
)),
m_emptyIcon
(
QLatin1String
(
":/debugger/images/empty14.png"
))
m_emptyIcon
(
QLatin1String
(
":/debugger/images/
debugger_
empty
_
14.png"
))
{
}
...
...
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