Commit 2156011b authored by Kai Koehne's avatar Kai Koehne
Browse files

markdown: Code beautification


Change-Id: I74d30578a9725f10a8d4e86ff8740d5f467d0fbc
Reviewed-by: default avatarAllan Sandfeld Jensen <allan.jensen@qt.io>
parent f10db97d
No related merge requests found
Showing with 2 additions and 2 deletions
......@@ -57,7 +57,7 @@
class Document : public QObject
{
Q_OBJECT
Q_PROPERTY(QString text MEMBER m_text NOTIFY textChanged)
Q_PROPERTY(QString text MEMBER m_text NOTIFY textChanged FINAL)
public:
explicit Document(QObject *parent = nullptr) : QObject(parent) {}
......
......@@ -67,7 +67,7 @@ class MainWindow : public QMainWindow
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
explicit MainWindow(QWidget *parent = nullptr);
~MainWindow();
void openFile(const QString &path);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment