diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-02-24 12:25:02 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-02-24 12:27:32 +0100 |
commit | 33740b7d5abb8aca34692fbdaa787b26a60652a9 (patch) | |
tree | ad2574a7850e2aa8ac18eaff89f4a85567896692 /include/tools | |
parent | 43d7f4e3640c5e370fd1204739c2b0c7eb5f40e4 (diff) |
Replace exisiting TriState, AutoState with more generic TriState
Change-Id: Ida05478aae5a379775c671e0c2f2851d820d78be
Diffstat (limited to 'include/tools')
-rw-r--r-- | include/tools/gen.hxx | 2 | ||||
-rw-r--r-- | include/tools/wintypes.hxx | 5 |
2 files changed, 2 insertions, 5 deletions
diff --git a/include/tools/gen.hxx b/include/tools/gen.hxx index bc3fb35dd5ab..492a3104d6d6 100644 --- a/include/tools/gen.hxx +++ b/include/tools/gen.hxx @@ -28,6 +28,8 @@ class SvStream; +enum TriState { TRISTATE_FALSE, TRISTATE_TRUE, TRISTATE_INDET }; + // Pair class SAL_WARN_UNUSED Pair diff --git a/include/tools/wintypes.hxx b/include/tools/wintypes.hxx index be55c19029b7..abba9c63b5c0 100644 --- a/include/tools/wintypes.hxx +++ b/include/tools/wintypes.hxx @@ -294,11 +294,6 @@ enum ImageAlign { IMAGEALIGN_LEFT, IMAGEALIGN_TOP, IMAGEALIGN_RIGHT, IMAGEALIGN_ IMAGEALIGN_BOTTOM_LEFT, IMAGEALIGN_BOTTOM_RIGHT, IMAGEALIGN_CENTER }; enum SymbolAlign { SYMBOLALIGN_LEFT, SYMBOLALIGN_RIGHT }; -// TriState - -enum TriState { STATE_NOCHECK, STATE_CHECK, STATE_DONTKNOW }; - - // ButtonDialog-Types typedef sal_uInt16 StandardButtonType; |