make it obvious that SwSurround and css::text::WrapTextMode are the same
Change-Id: I20154c12b9406b7ea2f8f245aa688859118982f7
This commit is contained in:
parent
b755df14a4
commit
1b6cad8969
1 changed files with 9 additions and 7 deletions
|
@ -19,14 +19,16 @@
|
|||
#ifndef _FMTSRNDENUM_HXX
|
||||
#define _FMTSRNDENUM_HXX
|
||||
|
||||
#include <com/sun/star/text/WrapTextMode.hpp>
|
||||
|
||||
enum SwSurround {
|
||||
SURROUND_BEGIN,
|
||||
SURROUND_NONE = SURROUND_BEGIN,
|
||||
SURROUND_THROUGHT,
|
||||
SURROUND_PARALLEL,
|
||||
SURROUND_IDEAL,
|
||||
SURROUND_LEFT,
|
||||
SURROUND_RIGHT,
|
||||
SURROUND_NONE = com::sun::star::text::WrapTextMode_NONE,
|
||||
SURROUND_BEGIN = SURROUND_NONE,
|
||||
SURROUND_THROUGHT = com::sun::star::text::WrapTextMode_THROUGHT,
|
||||
SURROUND_PARALLEL = com::sun::star::text::WrapTextMode_PARALLEL,
|
||||
SURROUND_IDEAL = com::sun::star::text::WrapTextMode_DYNAMIC,
|
||||
SURROUND_LEFT = com::sun::star::text::WrapTextMode_LEFT,
|
||||
SURROUND_RIGHT = com::sun::star::text::WrapTextMode_RIGHT,
|
||||
SURROUND_END
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue