summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-02-13 14:38:41 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-02-14 06:00:14 +0000
commit8593cd238cd049ecf9036833d5c83aad23082e26 (patch)
treef94e7da32c2d880828b6207b5b58acb892ee6a08 /include
parent93837254b7085c6632d76244d9ac466503ef47e0 (diff)
remove unused ValueSetWithTextControl::ControlType enum
since we only ever use the TextText enumerator Change-Id: Idfb96ad6ea3461e886439df33695be2d8dcebef9 Reviewed-on: https://gerrit.libreoffice.org/34211 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/svx/sidebar/ValueSetWithTextControl.hxx13
1 files changed, 0 insertions, 13 deletions
diff --git a/include/svx/sidebar/ValueSetWithTextControl.hxx b/include/svx/sidebar/ValueSetWithTextControl.hxx
index 619c77a22b2a..d21ccce5dd7d 100644
--- a/include/svx/sidebar/ValueSetWithTextControl.hxx
+++ b/include/svx/sidebar/ValueSetWithTextControl.hxx
@@ -38,19 +38,8 @@ namespace svx { namespace sidebar {
class SVX_DLLPUBLIC ValueSetWithTextControl : public ValueSet
{
public:
- // control type of specialized <ValueSet>:
- // - image + text
- // - text + text
- enum class ControlType
- {
- ImageText,
- TextText
- };
-
ValueSetWithTextControl(Window* pParent, WinBits nBits);
- // add item for control type TEXT_TEXT
- // if control type does not match TEXT_TEXT no item is added.
void AddItem(
const OUString& rItemText,
const OUString& rItemText2 );
@@ -67,8 +56,6 @@ private:
};
typedef ::std::vector< ValueSetWithTextItem > tItemList;
-
- const ControlType meControlType;
tItemList maItems;
};