Skip to content

Commit

Permalink
fix format again
Browse files Browse the repository at this point in the history
  • Loading branch information
zjeffer committed Feb 16, 2025
1 parent 349ed27 commit e73950d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/nodetreeview_p.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ class NodeTreeViewPrivate : public QAbstractItemViewPrivate
Q_DECLARE_PUBLIC(NodeTreeView)

public:
NodeTreeViewPrivate() : QAbstractItemViewPrivate() { };
NodeTreeViewPrivate() : QAbstractItemViewPrivate(){};
~NodeTreeViewPrivate() override = default;
};
2 changes: 1 addition & 1 deletion src/notelistview_p.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class NoteListViewPrivate : public QAbstractItemViewPrivate
Q_DECLARE_PUBLIC(NoteListView)

public:
NoteListViewPrivate() : QAbstractItemViewPrivate() { };
NoteListViewPrivate() : QAbstractItemViewPrivate(){};
~NoteListViewPrivate() override = default;
QPixmap renderToPixmap(const QModelIndexList &indexes, QRect *r) const;
QStyleOptionViewItem viewOptionsV1() const;
Expand Down

0 comments on commit e73950d

Please sign in to comment.