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:
hjk
2020-02-24 09:16:14 +01:00
parent 5d3e56b3b4
commit 87e4704356

View File

@@ -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);