Kaydet (Commit) bf309087 authored tarafından Kurt Zenker's avatar Kurt Zenker

INTEGRATION: CWS pchfix04 (1.36.2); FILE MERGED

2007/04/25 18:29:11 hjs 1.36.2.2: RESYNC: (1.36-1.37); FILE MERGED
2007/02/05 12:14:05 os 1.36.2.1: #i73604# usage of ITEMID_* removed
üst 1347c9b2
...@@ -4,9 +4,9 @@ ...@@ -4,9 +4,9 @@
* *
* $RCSfile: paraitem.cxx,v $ * $RCSfile: paraitem.cxx,v $
* *
* $Revision: 1.37 $ * $Revision: 1.38 $
* *
* last change: $Author: ihi $ $Date: 2007-04-19 09:17:43 $ * last change: $Author: kz $ $Date: 2007-05-10 14:52:54 $
* *
* The Contents of this file are made available subject to * The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1. * the terms of GNU Lesser General Public License Version 2.1.
...@@ -62,20 +62,6 @@ ...@@ -62,20 +62,6 @@
using namespace ::rtl; using namespace ::rtl;
using namespace ::com::sun::star; using namespace ::com::sun::star;
#define ITEMID_TABSTOP 0
#define ITEMID_LINESPACING 0
#define ITEMID_ADJUST 0
#define ITEMID_ORPHANS 0
#define ITEMID_WIDOWS 0
#define ITEMID_PAGEMODEL 0
#define ITEMID_FMTSPLIT 0
#define ITEMID_HYPHENZONE 0
#define ITEMID_SCRIPTSPACE 0
#define ITEMID_HANGINGPUNCTUATION 0
#define ITEMID_FORBIDDENRULE 0
#define ITEMID_PARAVERTALIGN 0
#define ITEMID_PARAGRID 0
#include <tools/rtti.hxx> #include <tools/rtti.hxx>
#include <basic/sbx.hxx> #include <basic/sbx.hxx>
#define GLOBALOVERFLOW3 #define GLOBALOVERFLOW3
...@@ -134,19 +120,19 @@ using namespace ::com::sun::star; ...@@ -134,19 +120,19 @@ using namespace ::com::sun::star;
// ----------------------------------------------------------------------- // -----------------------------------------------------------------------
TYPEINIT1_AUTOFACTORY(SvxLineSpacingItem, SfxPoolItem ); TYPEINIT1_FACTORY(SvxLineSpacingItem, SfxPoolItem , new SvxLineSpacingItem(LINE_SPACE_DEFAULT_HEIGHT, 0));
TYPEINIT1_AUTOFACTORY(SvxAdjustItem, SfxPoolItem); TYPEINIT1_FACTORY(SvxAdjustItem, SfxPoolItem, new SvxAdjustItem(SVX_ADJUST_LEFT, 0));
TYPEINIT1_AUTOFACTORY(SvxWidowsItem, SfxByteItem); TYPEINIT1_FACTORY(SvxWidowsItem, SfxByteItem, new SvxWidowsItem(0, 0));
TYPEINIT1_AUTOFACTORY(SvxOrphansItem, SfxByteItem); TYPEINIT1_FACTORY(SvxOrphansItem, SfxByteItem, new SvxOrphansItem(0, 0));
TYPEINIT1_AUTOFACTORY(SvxHyphenZoneItem, SfxPoolItem); TYPEINIT1_FACTORY(SvxHyphenZoneItem, SfxPoolItem, new SvxHyphenZoneItem(sal_False, 0));
TYPEINIT1_AUTOFACTORY(SvxTabStopItem, SfxPoolItem); TYPEINIT1_FACTORY(SvxTabStopItem, SfxPoolItem, new SvxTabStopItem(0));
TYPEINIT1_AUTOFACTORY(SvxFmtSplitItem, SfxBoolItem); TYPEINIT1_FACTORY(SvxFmtSplitItem, SfxBoolItem, new SvxFmtSplitItem(sal_False, 0));
TYPEINIT1_AUTOFACTORY(SvxPageModelItem, SfxStringItem); TYPEINIT1_FACTORY(SvxPageModelItem, SfxStringItem, new SvxPageModelItem(0));
TYPEINIT1_AUTOFACTORY(SvxScriptSpaceItem, SfxBoolItem); TYPEINIT1_FACTORY(SvxScriptSpaceItem, SfxBoolItem, new SvxScriptSpaceItem(sal_False, 0));
TYPEINIT1_AUTOFACTORY(SvxHangingPunctuationItem, SfxBoolItem); TYPEINIT1_FACTORY(SvxHangingPunctuationItem, SfxBoolItem, new SvxHangingPunctuationItem(sal_False, 0));
TYPEINIT1_AUTOFACTORY(SvxForbiddenRuleItem, SfxBoolItem); TYPEINIT1_FACTORY(SvxForbiddenRuleItem, SfxBoolItem, new SvxForbiddenRuleItem(sal_False, 0));
TYPEINIT1_AUTOFACTORY(SvxParaVertAlignItem, SfxUInt16Item); TYPEINIT1_FACTORY(SvxParaVertAlignItem, SfxUInt16Item, new SvxParaVertAlignItem(0, 0));
TYPEINIT1_AUTOFACTORY(SvxParaGridItem, SfxBoolItem); TYPEINIT1_FACTORY(SvxParaGridItem, SfxBoolItem, new SvxParaGridItem(sal_True, 0));
SV_IMPL_VARARR_SORT( SvxTabStopArr, SvxTabStop ) SV_IMPL_VARARR_SORT( SvxTabStopArr, SvxTabStop )
......
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