Kaydet (Commit) 1b6cad89 authored tarafından Luboš Luňák's avatar Luboš Luňák

make it obvious that SwSurround and css::text::WrapTextMode are the same

Change-Id: I20154c12b9406b7ea2f8f245aa688859118982f7
üst b755df14
......@@ -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
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment