diff options
author | Jürgen Schmidt <jsc@apache.org> | 2013-12-20 05:47:11 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-12-20 09:23:57 +0000 |
commit | 5f7d39a07e108385b34c00e95dfdf734ad8f1f56 (patch) | |
tree | ec88a559685ac5b740ee9d032a5fa468b8fe41f6 /include | |
parent | b8a1af35cc565248f6d103f526488fa7cc44ac38 (diff) |
Resolves: #i120065# apply patch for Enabled property in grid model
Patch By: hanya
Review By: jsc
(cherry picked from commit 0164d67071d06aa42213c4a66765b5d032ca84d3)
Change-Id: Iad363b75dd30722b10139b31c90b3d598deaaf30
Diffstat (limited to 'include')
-rw-r--r-- | include/svtools/table/tablemodel.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/svtools/table/tablemodel.hxx b/include/svtools/table/tablemodel.hxx index 38d1c28384a8..0711bb0b6ff9 100644 --- a/include/svtools/table/tablemodel.hxx +++ b/include/svtools/table/tablemodel.hxx @@ -525,6 +525,10 @@ namespace svt { namespace table */ virtual ITableDataSort* getSortAdapter() = 0; + /** returns enabled state. + */ + virtual bool isEnabled() const = 0; + /// destroys the table model instance virtual ~ITableModel() { } }; |