diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-11-29 18:01:00 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-11-29 19:13:19 -0500 |
commit | 5388cd54ac145fb42ef81b5b166520958c21da52 (patch) | |
tree | 30b42d29e00668c83e94ec6f8a90c3d830c109dc /svtools | |
parent | d99a7f66f42fb007ed625222812247a1f4650ffe (diff) |
Now we can officially hide these flag values.
Change-Id: Ia203700da59e6962112889404f12041ea8648e19
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/inc/svtools/viewdataentry.hxx | 7 | ||||
-rw-r--r-- | svtools/source/contnr/viewdataentry.cxx | 7 |
2 files changed, 7 insertions, 7 deletions
diff --git a/svtools/inc/svtools/viewdataentry.hxx b/svtools/inc/svtools/viewdataentry.hxx index 8f1c21f91b50..65a3db9134eb 100644 --- a/svtools/inc/svtools/viewdataentry.hxx +++ b/svtools/inc/svtools/viewdataentry.hxx @@ -26,13 +26,6 @@ #include <vector> -// Entryflags that are attached to the View -#define SVLISTENTRYFLAG_SELECTED 0x0001 -#define SVLISTENTRYFLAG_EXPANDED 0x0002 -#define SVLISTENTRYFLAG_FOCUSED 0x0004 -#define SVLISTENTRYFLAG_CURSORED 0x0008 -#define SVLISTENTRYFLAG_NOT_SELECTABLE 0x0010 - struct SvViewDataItem { Size maSize; diff --git a/svtools/source/contnr/viewdataentry.cxx b/svtools/source/contnr/viewdataentry.cxx index 99aeaa40e33d..1d3bfaf87d2c 100644 --- a/svtools/source/contnr/viewdataentry.cxx +++ b/svtools/source/contnr/viewdataentry.cxx @@ -21,6 +21,13 @@ #include "tools/debug.hxx" +// Entryflags that are attached to the View +#define SVLISTENTRYFLAG_SELECTED 0x0001 +#define SVLISTENTRYFLAG_EXPANDED 0x0002 +#define SVLISTENTRYFLAG_FOCUSED 0x0004 +#define SVLISTENTRYFLAG_CURSORED 0x0008 +#define SVLISTENTRYFLAG_NOT_SELECTABLE 0x0010 + DBG_NAME(SvViewDataEntry); SvViewDataEntry::SvViewDataEntry() : |