diff options
author | Brad King <brad.king@kitware.com> | 2024-01-09 14:53:14 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2024-01-09 14:54:30 (GMT) |
commit | 27d958b34c17bf1fe5a4833f732e3974d7b8609e (patch) | |
tree | 95f6330d52b7371c9174fc0e4b3650ae480a0b2d /Source | |
parent | 7e81c6fce9663e2552f6ed659a487550229ea9ea (diff) | |
parent | 3f3c387a96c7fdd62145270a02039473c624d7bb (diff) | |
download | CMake-27d958b34c17bf1fe5a4833f732e3974d7b8609e.zip CMake-27d958b34c17bf1fe5a4833f732e3974d7b8609e.tar.gz CMake-27d958b34c17bf1fe5a4833f732e3974d7b8609e.tar.bz2 |
Merge topic 'cmake-gui-unused-slot'
3f3c387a96 cmake-gui: Remove unused viewType slot
Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: buildbot <buildbot@kitware.com>
Merge-request: !9137
Diffstat (limited to 'Source')
-rw-r--r-- | Source/QtDialog/QCMakeCacheView.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/QtDialog/QCMakeCacheView.h b/Source/QtDialog/QCMakeCacheView.h index 89068ab..549cca2 100644 --- a/Source/QtDialog/QCMakeCacheView.h +++ b/Source/QtDialog/QCMakeCacheView.h @@ -91,10 +91,6 @@ public slots: const QString& description, const QVariant& value, bool advanced); - // set the view type - void setViewType(ViewType t); - ViewType viewType() const; - public: // get the properties QCMakePropertyList properties() const; @@ -112,6 +108,10 @@ public: // get the data in the model for this property void getPropertyData(const QModelIndex& idx1, QCMakeProperty& prop) const; + // set the view type + void setViewType(ViewType t); + ViewType viewType() const; + protected: bool EditEnabled; int NewPropertyCount; |