forked from qt-creator/qt-creator
Debugger: Modernize
Mostly nullptr instead of 0, but also a few bits of collateral damage. Change-Id: I921991272aca921dcdecf302dfff3716e79dfc24 Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
@@ -48,7 +48,7 @@ class LogWindow : public QWidget
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit LogWindow(QWidget *parent = 0);
|
||||
explicit LogWindow(QWidget *parent = nullptr);
|
||||
|
||||
void setCursor(const QCursor &cursor);
|
||||
|
||||
@@ -59,7 +59,7 @@ public:
|
||||
|
||||
static QString logTimeStamp();
|
||||
|
||||
static bool writeLogContents(const QPlainTextEdit *editor, QWidget *parent = 0);
|
||||
static bool writeLogContents(const QPlainTextEdit *editor, QWidget *parent = nullptr);
|
||||
|
||||
static QChar charForChannel(int channel);
|
||||
static LogChannel channelForChar(QChar c);
|
||||
|
||||
Reference in New Issue
Block a user