forked from qt-creator/qt-creator
Debugger: De-virtualize and de-slot DebuggerEngine::show*Message
Apparently not used virtually/weakly anymore, so make it easier to reason about used code paths. Last users apparently were QmlCppEngine and TrkAdapter. Both gone. Change-Id: I5ab7d261362bede9a4cf622f4c124726deca83e8 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -392,9 +392,8 @@ public:
|
||||
void handleReverseDirection(bool);
|
||||
|
||||
// Convenience
|
||||
Q_SLOT virtual void showMessage(const QString &msg, int channel = LogDebug,
|
||||
int timeout = -1) const;
|
||||
Q_SLOT void showStatusMessage(const QString &msg, int timeout = -1) const;
|
||||
void showMessage(const QString &msg, int channel = LogDebug, int timeout = -1) const;
|
||||
void showStatusMessage(const QString &msg, int timeout = -1) const;
|
||||
|
||||
virtual void resetLocation();
|
||||
virtual void gotoLocation(const Internal::Location &location);
|
||||
|
Reference in New Issue
Block a user