diff options
author | con <qtc-committer@nokia.com> | 2010-03-05 14:30:08 +0100 |
---|---|---|
committer | con <qtc-committer@nokia.com> | 2010-03-05 16:03:31 +0100 |
commit | ab74d238487c0935856c65fce751190deac56af4 (patch) | |
tree | c1b60dd7add5df6f61d2248c459ec4a4ba1d6e58 /src/plugins/debugger/stackhandler.cpp | |
parent | 67a14a172e883cbcb21a605aea46ff1ad1e0b549 (diff) | |
download | qt-creator-ab74d238487c0935856c65fce751190deac56af4.tar.gz |
Avoid pulling in the svg plugin.
Diffstat (limited to 'src/plugins/debugger/stackhandler.cpp')
-rw-r--r-- | src/plugins/debugger/stackhandler.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/debugger/stackhandler.cpp b/src/plugins/debugger/stackhandler.cpp index 58ffced917..39831c42be 100644 --- a/src/plugins/debugger/stackhandler.cpp +++ b/src/plugins/debugger/stackhandler.cpp @@ -113,8 +113,8 @@ QDebug operator<<(QDebug d, const StackFrame &f) StackHandler::StackHandler(QObject *parent) : QAbstractTableModel(parent), - m_positionIcon(QIcon(":/debugger/images/location.svg")), - m_emptyIcon(QIcon(":/debugger/images/empty.svg")) + m_positionIcon(QIcon(":/debugger/images/location_16.png")), + m_emptyIcon(QIcon(":/debugger/images/empty14.png")) { m_currentIndex = 0; m_canExpand = false; @@ -287,8 +287,8 @@ enum { IdColumn, AddressColumn, FunctionColumn, FileColumn, LineColumn, ColumnCo ThreadsHandler::ThreadsHandler(QObject *parent) : QAbstractTableModel(parent), m_currentIndex(0), - m_positionIcon(QLatin1String(":/debugger/images/location.svg")), - m_emptyIcon(QLatin1String(":/debugger/images/empty.svg")) + m_positionIcon(QLatin1String(":/debugger/images/location_16.png")), + m_emptyIcon(QLatin1String(":/debugger/images/empty14.png")) { } |