debugger: rename resource path for generic images from 'gdbdebugger' to 'debugger'

This commit is contained in:
hjk
2009-05-19 15:33:17 +02:00
parent 1f26af5c5e
commit fe7e88a6b5
8 changed files with 23 additions and 23 deletions

View File

@@ -69,8 +69,8 @@ QString StackFrame::toToolTip() const
StackHandler::StackHandler(QObject *parent)
: QAbstractTableModel(parent),
m_positionIcon(QIcon(":/gdbdebugger/images/location.svg")),
m_emptyIcon(QIcon(":/gdbdebugger/images/empty.svg"))
m_positionIcon(QIcon(":/debugger/images/location.svg")),
m_emptyIcon(QIcon(":/debugger/images/empty.svg"))
{
m_currentIndex = 0;
m_canExpand = false;
@@ -215,8 +215,8 @@ bool StackHandler::isDebuggingDebuggingHelpers() const
ThreadsHandler::ThreadsHandler(QObject *parent)
: QAbstractTableModel(parent), m_currentIndex(0)
{
m_emptyIcon = QIcon(":/gdbdebugger/images/empty.svg");
m_positionIcon = QIcon(":/gdbdebugger/images/location.svg");
m_emptyIcon = QIcon(":/debugger/images/empty.svg");
m_positionIcon = QIcon(":/debugger/images/location.svg");
}
int ThreadsHandler::rowCount(const QModelIndex &parent) const