Removed static QIcon instances.

thus fixing the exit warning:
"~QX11PixmapData(): QPixmap objects must be destroyed..."

Acked-by: con
This commit is contained in:
Friedemann Kleint
2010-02-10 10:47:34 +01:00
parent a403c43645
commit 28d72550d3
23 changed files with 169 additions and 129 deletions

View File

@@ -47,6 +47,7 @@ class QLabel;
class QMessageBox;
class QPoint;
class QVariant;
class QIcon;
QT_END_NAMESPACE
namespace Core {
@@ -97,6 +98,7 @@ class GdbEngine;
class CdbDebugEngine;
class CdbDebugEnginePrivate;
class TrkGdbAdapter;
class BreakpointMarker;
} // namespace Internal
class DEBUGGER_EXPORT DebuggerStartParameters
@@ -173,6 +175,7 @@ public:
friend class Internal::CdbDebugEngine;
friend class Internal::CdbDebugEnginePrivate;
friend class Internal::TrkGdbAdapter;
friend class Internal::BreakpointMarker;
DebuggerState state() const;
QList<Core::IOptionsPage*> initializeEngines(unsigned enabledTypeFlags);
@@ -197,6 +200,8 @@ public:
const CPlusPlus::Snapshot &cppCodeModelSnapshot() const;
QIcon locationMarkIcon() const;
static DebuggerManager *instance();
public slots: