summaryrefslogtreecommitdiff
path: root/include/svx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-24 12:25:02 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-24 12:27:32 +0100
commit33740b7d5abb8aca34692fbdaa787b26a60652a9 (patch)
treead2574a7850e2aa8ac18eaff89f4a85567896692 /include/svx
parent43d7f4e3640c5e370fd1204739c2b0c7eb5f40e4 (diff)
Replace exisiting TriState, AutoState with more generic TriState
Change-Id: Ida05478aae5a379775c671e0c2f2851d820d78be
Diffstat (limited to 'include/svx')
-rw-r--r--include/svx/orienthelper.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/svx/orienthelper.hxx b/include/svx/orienthelper.hxx
index a6a52cb7a677..271e87a61d3e 100644
--- a/include/svx/orienthelper.hxx
+++ b/include/svx/orienthelper.hxx
@@ -65,10 +65,10 @@ public:
/** Registers the passed window to be enabled/disabled on call of Enable().
@param eDisableIfStacked
- STATE_CHECK: Window always disabled, if stacked text is turned on.
- STATE_NOCHECK: Window always disabled, if stacked text is turned off.
- STATE_DONTKNOW: Window will be enabled/disabled independent from stacked text. */
- void AddDependentWindow( Window& rWindow, TriState eDisableIfStacked = STATE_DONTKNOW );
+ TRISTATE_TRUE: Window always disabled, if stacked text is turned on.
+ TRISTATE_FALSE: Window always disabled, if stacked text is turned off.
+ TRISTATE_INDET: Window will be enabled/disabled independent from stacked text. */
+ void AddDependentWindow( Window& rWindow, TriState eDisableIfStacked = TRISTATE_INDET );
/** Enables or disables the dial control and all dependent windows. */
void Enable( bool bEnable = true );