summaryrefslogtreecommitdiffstats
path: root/sd/inc
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2016-05-09 09:05:57 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-05-09 11:15:16 +0000
commit17076d8ecf77f313b7a93912528f9cb0fd0d3ea8 (patch)
treecb77cae87f0a07e729deb9a66679a4cfec434768 /sd/inc
parentfix windows and android build (diff)
downloadcore-17076d8ecf77f313b7a93912528f9cb0fd0d3ea8.tar.gz
core-17076d8ecf77f313b7a93912528f9cb0fd0d3ea8.zip
convert OUTLINER_MODE to scoped enum
Change-Id: I7ac45d7fbd5e77a105cbe942c6d4fd6cfc8ff909 Reviewed-on: https://gerrit.libreoffice.org/24789 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sd/inc')
-rw-r--r--sd/inc/Outliner.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sd/inc/Outliner.hxx b/sd/inc/Outliner.hxx
index 73434a74ed4d..3c7296a8f1de 100644
--- a/sd/inc/Outliner.hxx
+++ b/sd/inc/Outliner.hxx
@@ -114,14 +114,14 @@ public:
@param pDoc
The draw document from which to take the content.
@param nMode
- The valid values <const>OUTLINERMODE_DONTKNOW</const>,
- <const>OUTLINERMODE_TEXTOBJECT</const>,
- <const>OUTLINERMODE_TITLEOBJECT</const>,
- <const>OUTLINERMODE_OUTLINEOBJECT</const>, and
- <const>OUTLINERMODE_OUTLINEVIEW</const> are defined in
+ The valid values <const>OutlinerMode::DontKnow</const>,
+ <const>OutlinerMode::TextObject</const>,
+ <const>OutlinerMode::TitleObject</const>,
+ <const>OutlinerMode::OutlineObject</const>, and
+ <const>OutlinerMode::OutlineView</const> are defined in
editeng/outliner.hxx.
*/
- Outliner( SdDrawDocument* pDoc, sal_uInt16 nMode );
+ Outliner( SdDrawDocument* pDoc, OutlinerMode nMode );
virtual ~Outliner();
/// Forbid copy construction and copy assignment
Outliner(const Outliner&) = delete;