forked from qt-creator/qt-creator
Add final specifies to classes
Warning -Wfinal-dtor-non-final-class in clang trunk Change-Id: I2bf17064bf8898eab10b82b69583a283157766d0 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
@@ -45,7 +45,7 @@ class DebuggerPane;
|
||||
class CombinedPane;
|
||||
class InputPane;
|
||||
|
||||
class LogWindow : public QWidget
|
||||
class LogWindow final : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
@@ -85,7 +85,7 @@ private:
|
||||
DebuggerEngine *m_engine;
|
||||
};
|
||||
|
||||
class GlobalLogWindow : public QWidget
|
||||
class GlobalLogWindow final : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
|
||||
Reference in New Issue
Block a user