diff options
Diffstat (limited to 'Source/QtDialog/QCMakeCacheView.h')
-rw-r--r-- | Source/QtDialog/QCMakeCacheView.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Source/QtDialog/QCMakeCacheView.h b/Source/QtDialog/QCMakeCacheView.h index 892d84f..91d1053 100644 --- a/Source/QtDialog/QCMakeCacheView.h +++ b/Source/QtDialog/QCMakeCacheView.h @@ -55,6 +55,7 @@ public: public slots: void setProperties(const QCMakeCachePropertyList& props); + void clear(); public: // satisfy [pure] virtuals @@ -77,14 +78,16 @@ protected: bool IsDirty; }; -/// Qt delegate class for interaction (or other customization) with cache properties +/// Qt delegate class for interaction (or other customization) +/// with cache properties class QCMakeCacheModelDelegate : public QItemDelegate { Q_OBJECT public: QCMakeCacheModelDelegate(QObject* p); /// create our own editors for cache properties - QWidget* createEditor(QWidget * parent, const QStyleOptionViewItem & option, const QModelIndex & index ) const; + QWidget* createEditor(QWidget* parent, const QStyleOptionViewItem& option, + const QModelIndex& index ) const; }; /// Editor widget for editing paths or file paths |