forked from qt-creator/qt-creator
CppEditor: Check only pure virtual functions by default
Task-number: QTCREATORBUG-10154 Change-Id: Iec1b895e3f06d9d6ae36f19f6c8048c78faac514 Reviewed-by: Nikolai Kosjar <nikolai.kosjar@digia.com>
This commit is contained in:
committed by
Orgad Shaneh
parent
07a1cddec2
commit
8da53e6587
@@ -532,7 +532,7 @@ class InsertVirtualMethodsDialog : public QDialog
|
||||
public:
|
||||
enum CustomItemRoles {
|
||||
ClassOrFunction = Qt::UserRole + 1,
|
||||
Implemented = Qt::UserRole + 2,
|
||||
Reimplemented = Qt::UserRole + 2,
|
||||
PureVirtual = Qt::UserRole + 3,
|
||||
AccessSpec = Qt::UserRole + 4
|
||||
};
|
||||
@@ -556,8 +556,10 @@ public:
|
||||
bool hideReimplementedFunctions() const;
|
||||
virtual bool gather();
|
||||
|
||||
private slots:
|
||||
public slots:
|
||||
void updateCheckBoxes(QStandardItem *item);
|
||||
|
||||
private slots:
|
||||
void setHideReimplementedFunctions(bool hide);
|
||||
|
||||
private:
|
||||
|
||||
Reference in New Issue
Block a user