summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-02-03 16:28:34 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-02-04 11:39:23 +0000
commit5ec98c76986c1fe004fe10b1a003618d74a2c5d3 (patch)
tree1262dc714be11f411ca423e194b7906addf3dedb
parent16431492441e742fbbbfc73ba0b715a91ec3ee45 (diff)
remove unused Synchron from SDI files
Change-Id: I0b8c63a97bfa4a49ac87869e164ab22d2aa99de3 Reviewed-on: https://gerrit.libreoffice.org/22097 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
-rw-r--r--idl/inc/globals.hxx2
-rw-r--r--idl/inc/slot.hxx10
-rw-r--r--idl/source/objects/slot.cxx17
-rw-r--r--idl/source/prj/command.cxx2
-rw-r--r--idl/source/prj/globals.cxx1
-rw-r--r--include/sfx2/msg.hxx7
-rw-r--r--sc/sdi/scalc.sdi336
-rw-r--r--sd/sdi/sdnew.sdi2
-rw-r--r--sd/sdi/sdraw.sdi265
-rw-r--r--sfx2/sdi/sfx.sdi200
-rw-r--r--starmath/sdi/smath.sdi31
-rw-r--r--svx/sdi/svx.sdi547
-rw-r--r--sw/sdi/swriter.sdi326
13 files changed, 6 insertions, 1740 deletions
diff --git a/idl/inc/globals.hxx b/idl/inc/globals.hxx
index f3f30cc18d7a..8a82aee5c969 100644
--- a/idl/inc/globals.hxx
+++ b/idl/inc/globals.hxx
@@ -46,7 +46,6 @@ struct SvGlobalHashNames
SvStringHashEntryRef MM_Volatile;
SvStringHashEntryRef MM_Toggle;
SvStringHashEntryRef MM_AutoUpdate;
- SvStringHashEntryRef MM_Synchron;
SvStringHashEntryRef MM_Asynchron;
SvStringHashEntryRef MM_RecordPerSet;
SvStringHashEntryRef MM_RecordPerItem;
@@ -149,7 +148,6 @@ HASH_INLINE(SlotId)
HASH_INLINE(Volatile)
HASH_INLINE(Toggle)
HASH_INLINE(AutoUpdate)
-HASH_INLINE(Synchron)
HASH_INLINE(Asynchron)
HASH_INLINE(RecordPerItem)
HASH_INLINE(RecordPerSet)
diff --git a/idl/inc/slot.hxx b/idl/inc/slot.hxx
index c9c09a27c091..6f12fcf68c19 100644
--- a/idl/inc/slot.hxx
+++ b/idl/inc/slot.hxx
@@ -40,7 +40,6 @@ class SvMetaSlot : public SvMetaAttribute
SvBOOL aToggle;
SvBOOL aAutoUpdate;
- SvBOOL aSynchron; // exclusive
SvBOOL aAsynchron;
SvBOOL aRecordPerItem;// exclusive
@@ -88,17 +87,9 @@ protected:
aAutoUpdate = bSet;
}
- void SetSynchron( bool bSet )
- {
- aSynchron = bSet;
- if( bSet )
- aAsynchron = false;
- }
void SetAsynchron( bool bSet )
{
aAsynchron = bSet;
- if( bSet )
- aSynchron = false;
}
void SetRecordPerItem( bool bSet )
@@ -159,7 +150,6 @@ public:
bool GetToggle() const;
bool GetAutoUpdate() const;
- bool GetSynchron() const;
bool GetAsynchron() const;
bool GetRecordPerItem() const;
diff --git a/idl/source/objects/slot.cxx b/idl/source/objects/slot.cxx
index 4d5782fdf333..fbb560fa6ba8 100644
--- a/idl/source/objects/slot.cxx
+++ b/idl/source/objects/slot.cxx
@@ -34,8 +34,7 @@ SvMetaObject *SvMetaSlot::MakeClone() const
}
SvMetaSlot::SvMetaSlot()
- : aSynchron( true, false )
- , aRecordPerSet( true, false )
+ : aRecordPerSet( true, false )
, aRecordAbsolute( false, false )
, pLinkedSlot(nullptr)
, pNextSlot(nullptr)
@@ -46,7 +45,6 @@ SvMetaSlot::SvMetaSlot()
SvMetaSlot::SvMetaSlot( SvMetaType * pType )
: SvMetaAttribute( pType )
- , aSynchron( true, false )
, aRecordPerSet( true, false )
, aRecordAbsolute( false, false )
, pLinkedSlot(nullptr)
@@ -148,17 +146,10 @@ bool SvMetaSlot::GetAutoUpdate() const
if( aAutoUpdate.IsSet() || !GetRef() ) return aAutoUpdate;
return static_cast<SvMetaSlot *>(GetRef())->GetAutoUpdate();
}
-bool SvMetaSlot::GetSynchron() const
-{
- // Synchron and Asynchron are exclusive
- if( !GetRef() || aSynchron.IsSet() || aAsynchron.IsSet() )
- return aSynchron;
- return static_cast<SvMetaSlot *>(GetRef())->GetSynchron();
-}
bool SvMetaSlot::GetAsynchron() const
{
// Synchron and Asynchron are exclusive
- if( !GetRef() || aAsynchron.IsSet() || aSynchron.IsSet() )
+ if( !GetRef() || aAsynchron.IsSet() )
return aAsynchron;
return static_cast<SvMetaSlot *>(GetRef())->GetAsynchron();
}
@@ -293,8 +284,6 @@ void SvMetaSlot::ReadAttributesSvIdl( SvIdlDataBase & rBase,
if( aAutoUpdate.ReadSvIdl( SvHash_AutoUpdate(), rInStm ) )
SetAutoUpdate( aAutoUpdate ), bOk = true;
- if( aSynchron.ReadSvIdl( SvHash_Synchron(), rInStm ) )
- SetSynchron( aSynchron ), bOk = true;
if( aAsynchron.ReadSvIdl( SvHash_Asynchron(), rInStm ) )
SetAsynchron( aAsynchron ), bOk = true;
@@ -821,8 +810,6 @@ void SvMetaSlot::WriteSlot( const OString& rShellName, sal_uInt16 nCount,
rOutStm.WriteCharPtr( MakeSlotName( SvHash_Toggle() ).getStr() ).WriteChar( '|' );
if( GetAutoUpdate() )
rOutStm.WriteCharPtr( MakeSlotName( SvHash_AutoUpdate() ).getStr() ).WriteChar( '|' );
- if( GetSynchron() )
- rOutStm.WriteCharPtr( MakeSlotName( SvHash_Synchron() ).getStr() ).WriteChar( '|' );
if( GetAsynchron() )
rOutStm.WriteCharPtr( MakeSlotName( SvHash_Asynchron() ).getStr() ).WriteChar( '|' );
if( GetRecordPerItem() )
diff --git a/idl/source/prj/command.cxx b/idl/source/prj/command.cxx
index b1c87083f697..6e6afd3c8711 100644
--- a/idl/source/prj/command.cxx
+++ b/idl/source/prj/command.cxx
@@ -95,7 +95,7 @@ char const * SyntaxStrings[] = {
"\t\tRecordPerSet*, RecordPerItem, RecordManual, NoRecord",
"\t\tRecordAbsolute",
"\t\tStateMethod = Identifier",
-"\t\tSynchron*, Asynchron",
+"\t\tAsynchron",
"\t\tToggle",
"\t']'\n",
diff --git a/idl/source/prj/globals.cxx b/idl/source/prj/globals.cxx
index c5d1c7658efd..b8357d8c5c0c 100644
--- a/idl/source/prj/globals.cxx
+++ b/idl/source/prj/globals.cxx
@@ -73,7 +73,6 @@ SvGlobalHashNames::SvGlobalHashNames()
, MM_SlotId( INS( "SlotId" ) )
, MM_Toggle( INS( "Toggle" ) )
, MM_AutoUpdate( INS( "AutoUpdate" ) )
- , MM_Synchron( INS( "Synchron" ) )
, MM_Asynchron( INS( "Asynchron" ) )
A_ENTRY(RecordPerSet)
A_ENTRY(RecordPerItem)
diff --git a/include/sfx2/msg.hxx b/include/sfx2/msg.hxx
index e3b3c4ddfd8a..edb1cfff449a 100644
--- a/include/sfx2/msg.hxx
+++ b/include/sfx2/msg.hxx
@@ -33,8 +33,7 @@ enum class SfxSlotMode {
TOGGLE = 0x0004L, // inverted for Execute old value
AUTOUPDATE = 0x0008L, // invalidated the status automatically after execute
- SYNCHRON = 0x0010L, // exclusive to ASYNCHRON, default
- ASYNCHRON = 0x0020L, // via Post-Message, exclusive to SYNCHRON
+ ASYNCHRON = 0x0020L, // via Post-Message
HASDIALOG = 0x0080L, // Coordinates for dialogue after reconfig
NORECORD = 0x0100L, // no recording
@@ -42,7 +41,7 @@ enum class SfxSlotMode {
RECORDPERSET = 0x0400L, // The whole Set is a Statement, default
RECORDMANUAL = 0x0800L, // Recording by the application developer is default
RECORDABSOLUTE = 0x1000000L, // Recording with absolute Target
- STANDARD = 0x00410L, // SYNCHRON | RECORDPERSET;
+ STANDARD = 0x00400L, // RECORDPERSET;
PROPGET = 0x1000L, // get property
PROPSET = 0x2000L, // set property, exclusive to METHOD
@@ -63,7 +62,7 @@ enum class SfxSlotMode {
namespace o3tl
{
- template<> struct typed_flags<SfxSlotMode> : is_typed_flags<SfxSlotMode, 0x1ffffbeL> {};
+ template<> struct typed_flags<SfxSlotMode> : is_typed_flags<SfxSlotMode, 0x1ffffaeL> {};
}
diff --git a/sc/sdi/scalc.sdi b/sc/sdi/scalc.sdi
index a5d29431ca68..20aeb90c964f 100644
--- a/sc/sdi/scalc.sdi
+++ b/sc/sdi/scalc.sdi
@@ -28,7 +28,6 @@ SfxVoidItem AcceptChanges FID_CHG_ACCEPT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -51,7 +50,6 @@ SfxVoidItem ActivateOLE SID_OLE_ACTIVATE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -74,7 +72,6 @@ SfxVoidItem ActivateTable SID_TABLE_ACTIVATE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -97,7 +94,6 @@ SfxObjectItem ActiveCell SID_SC_ACTIVECELL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -122,7 +118,6 @@ SfxObjectItem ActiveTable SID_SC_ACTIVETAB
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -147,7 +142,6 @@ SfxVoidItem Add FID_TAB_APPEND
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -170,7 +164,6 @@ SfxVoidItem AddChartData SID_CHART_ADDSOURCE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -193,7 +186,6 @@ SfxVoidItem AddInManager SID_ADD_IN_MANAGER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -216,7 +208,6 @@ SfxVoidItem AddPrintArea SID_ADD_PRINTAREA
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -239,7 +230,6 @@ SfxStringItem Address SID_RANGE_ADDRESS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -264,7 +254,6 @@ SfxVoidItem AdjustPrintZoom FID_ADJUST_PRINTZOOM
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -287,7 +276,6 @@ SfxVoidItem AlignBlock SID_ALIGNBLOCK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -310,7 +298,6 @@ SfxVoidItem AlignBottom SID_ALIGNBOTTOM
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -333,7 +320,6 @@ SfxVoidItem AlignHorizontalCenter SID_ALIGNCENTERHOR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxStringItem
@@ -359,7 +345,6 @@ SfxVoidItem AlignLeft SID_ALIGNLEFT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -382,7 +367,6 @@ SfxVoidItem AlignRight SID_ALIGNRIGHT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -405,7 +389,6 @@ SfxVoidItem AlignTop SID_ALIGNTOP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -428,7 +411,6 @@ SfxVoidItem AlignVCenter SID_ALIGNCENTERVER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -451,7 +433,6 @@ SfxVoidItem ApplyNames FID_APPLY_NAME
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -474,7 +455,6 @@ SfxVoidItem AuditingFillMode SID_DETECTIVE_FILLMODE
Container = FALSE,
RecordAbsolute = FALSE,
NoRecord;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -497,7 +477,6 @@ SfxBoolItem AutoComplete FID_AUTOCOMPLETE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -522,7 +501,6 @@ SfxVoidItem AutoFill FID_FILL_AUTO
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -545,7 +523,6 @@ SfxBoolItem AutomaticCalculation FID_AUTO_CALC
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -570,7 +547,6 @@ SfxVoidItem AutoOutline SID_AUTO_OUTLINE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -593,7 +569,6 @@ SfxBoolItem AutoRefreshArrows SID_DETECTIVE_AUTO
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -618,7 +593,6 @@ SfxVoidItem AutoStyle SID_AUTO_STYLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -641,7 +615,6 @@ SfxVoidItem Calculate FID_RECALC
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -664,7 +637,6 @@ SfxVoidItem CalculateHard FID_HARD_RECALC
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -710,7 +682,6 @@ SfxObjectItem Cells SID_SC_CELLS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -733,7 +704,6 @@ SfxStringItem CellText SID_SC_CELLTEXT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -756,7 +726,6 @@ SfxVoidItem ChangeChartData SID_CHART_SOURCE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -779,7 +748,6 @@ SfxVoidItem ChangePrintArea SID_CHANGE_PRINTAREA
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -825,7 +793,6 @@ SfxVoidItem ClearArrowDependents SID_DETECTIVE_DEL_SUCC
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -848,7 +815,6 @@ SfxVoidItem ClearArrowPrecedents SID_DETECTIVE_DEL_PRED
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -871,7 +837,6 @@ SfxVoidItem ClearArrows SID_DETECTIVE_DEL_ALL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -894,7 +859,6 @@ SfxVoidItem ClearContents SID_DELETE_CONTENTS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -917,7 +881,6 @@ SfxInt16Item Column SID_RANGE_COL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -942,7 +905,6 @@ SfxUInt16Item ColumnWidth FID_COL_WIDTH
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -1009,7 +971,6 @@ SfxVoidItem ConditionalFormatDialog SID_OPENDLG_CONDFRMT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1032,7 +993,6 @@ SfxVoidItem ColorScaleFormatDialog SID_OPENDLG_COLORSCALE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1055,7 +1015,6 @@ SfxVoidItem DataBarFormatDialog SID_OPENDLG_DATABAR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1078,7 +1037,6 @@ SfxVoidItem IconSetFormatDialog SID_OPENDLG_ICONSET
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1101,7 +1059,6 @@ SfxVoidItem CondDateFormatDialog SID_OPENDLG_CONDDATE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1124,7 +1081,6 @@ SfxVoidItem ConditionalFormatManagerDialog SID_OPENDLG_CONDFRMT_MANAGER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1147,7 +1103,6 @@ SfxVoidItem ColorScaleDialog SID_COLORSCALE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1170,7 +1125,6 @@ SfxVoidItem DataBarDialog SID_DATABAR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1193,7 +1147,6 @@ SfxVoidItem ConsolidateExec SID_CONSOLIDATE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -1216,7 +1169,6 @@ SfxVoidItem CreateNames FID_USE_NAME
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1239,7 +1191,6 @@ SfxVoidItem CreateSWDrawView SID_CREATE_SW_DRAWVIEW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -1262,7 +1213,6 @@ SfxObjectItem CurrentRegion SID_RANGE_REGION
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -1287,7 +1237,6 @@ SfxVoidItem DataAreaRefresh SID_REFRESH_DBAREA
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1310,7 +1259,6 @@ SfxVoidItem DataConsolidate SID_OPENDLG_CONSOLIDATE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1333,7 +1281,6 @@ SfxVoidItem DataDataPilotRun SID_OPENDLG_PIVOTTABLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1356,7 +1303,6 @@ SfxVoidItem DataFilterAutoFilter SID_AUTO_FILTER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1379,7 +1325,6 @@ SfxVoidItem DataFilterHideAutoFilter SID_AUTOFILTER_HIDE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1402,7 +1347,6 @@ SfxVoidItem DataFilterRemoveFilter SID_UNFILTER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1425,7 +1369,6 @@ SfxVoidItem DataFilterSpecialFilter SID_SPECIAL_FILTER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1448,7 +1391,6 @@ SfxVoidItem DataFilterStandardFilter SID_FILTER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1471,7 +1413,6 @@ SfxVoidItem DataImport SID_IMPORT_DATA
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1494,7 +1435,6 @@ SfxObjectItem DataPilotCreate SID_PIVOT_CREATE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -1517,7 +1457,6 @@ SfxVoidItem DataPilotExec SID_PIVOT_TABLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -1540,7 +1479,6 @@ SfxObjectItem DataPilotTables SID_PIVOT_GET
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -1565,7 +1503,6 @@ SfxVoidItem DataReImport SID_REIMPORT_DATA
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -1588,7 +1525,6 @@ SfxVoidItem DataSelect SID_DATA_SELECT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1611,7 +1547,6 @@ SfxVoidItem DataSort SID_SORT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1634,7 +1569,6 @@ SfxVoidItem DataForm SID_DATA_FORM
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1657,7 +1591,6 @@ SfxVoidItem DataSubTotals SID_SUBTOTALS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1680,7 +1613,6 @@ SfxVoidItem Deactivate SID_OLE_DEACTIVATE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -1703,7 +1635,6 @@ SfxVoidItem DefineDBName SID_DEFINE_DBNAME
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1726,7 +1657,6 @@ SfxVoidItem DefineLabelRange SID_DEFINE_COLROWNAMERANGES
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1749,7 +1679,6 @@ SfxVoidItem DefineName FID_DEFINE_NAME
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1772,7 +1701,6 @@ SfxVoidItem DefinePrintArea SID_DEFINE_PRINTAREA
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1795,7 +1723,6 @@ SfxVoidItem DeleteCell FID_DELETE_CELL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1818,7 +1745,6 @@ SfxVoidItem DeleteAllBreaks FID_DEL_MANUALBREAKS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1841,7 +1767,6 @@ SfxVoidItem DeleteColumnbreak FID_DEL_COLBRK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1864,7 +1789,6 @@ SfxVoidItem DeleteColumns SID_DEL_COLS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1887,7 +1811,6 @@ SfxVoidItem DeletePivotTable SID_PIVOT_KILL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -1910,7 +1833,6 @@ SfxVoidItem DeletePrintArea SID_DELETE_PRINTAREA
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1933,7 +1855,6 @@ SfxVoidItem DeleteRowbreak FID_DEL_ROWBRK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1956,7 +1877,6 @@ SfxVoidItem DeleteRows SID_DEL_ROWS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1979,7 +1899,6 @@ SfxVoidItem DeleteScenario SID_DELETE_SCENARIO
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -2002,7 +1921,6 @@ SfxVoidItem Deselect SID_SELECT_NONE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2025,7 +1943,6 @@ SfxVoidItem DrawChart SID_DRAW_CHART
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2048,7 +1965,6 @@ SfxVoidItem DrawEditNote SID_DRAW_NOTEEDIT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -2071,7 +1987,6 @@ SfxVoidItem EditHeaderAndFooter SID_HFEDIT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2094,7 +2009,6 @@ SfxVoidItem EditLinks SID_LINKS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -2117,7 +2031,6 @@ SfxVoidItem EditObject SID_SC_EDIT_OBJECT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -2140,7 +2053,6 @@ SfxVoidItem EditPrintArea SID_OPENDLG_EDIT_PRINTAREA
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2163,7 +2075,6 @@ SfxVoidItem EditScenario SID_EDIT_SCENARIO
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -2278,7 +2189,6 @@ SfxVoidItem FillModeEnd SID_FILL_NONE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -2301,7 +2211,6 @@ SfxVoidItem FillModeRemovePredescessor SID_FILL_DEL_PRED
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -2324,7 +2233,6 @@ SfxVoidItem FillModeRemoveSuccessor SID_FILL_DEL_SUCC
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -2347,7 +2255,6 @@ SfxVoidItem FillModeSelect SID_FILL_SELECT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -2370,7 +2277,6 @@ SfxVoidItem FillModeTracePredescessor SID_FILL_ADD_PRED
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -2393,7 +2299,6 @@ SfxVoidItem FillModeTraceSuccessor SID_FILL_ADD_SUCC
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -2508,7 +2413,6 @@ SfxVoidItem FilterExecute FID_FILTER_OK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -2531,7 +2435,6 @@ SfxVoidItem FirstPage SID_PREVIEW_FIRST
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2554,7 +2457,6 @@ SfxVoidItem FocusCellAddress FID_FOCUS_POSWND
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2577,7 +2479,6 @@ SfxVoidItem Collaborate SID_COLLABORATION
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2600,7 +2501,6 @@ SfxVoidItem FormatCellDialog FID_CELL_FORMAT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2623,7 +2523,6 @@ SfxStringItem Formula SID_RANGE_FORMULA
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -2648,7 +2547,6 @@ SfxVoidItem FreezePanes SID_WINDOW_FIX
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2671,7 +2569,6 @@ SfxVoidItem FunctionBox FID_FUNCTION_BOX
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2696,7 +2593,6 @@ SfxVoidItem FunctionDialog SID_OPENDLG_FUNCTION
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2719,7 +2615,6 @@ SfxVoidItem GoalSeek SID_SOLVE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -2742,7 +2637,6 @@ SfxVoidItem GoalSeekDialog SID_OPENDLG_SOLVE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2764,7 +2658,6 @@ SfxVoidItem RandomNumberGeneratorDialog SID_RANDOM_NUMBER_GENERATOR_DIALOG
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2786,7 +2679,6 @@ SfxVoidItem SamplingDialog SID_SAMPLING_DIALOG
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2808,7 +2700,6 @@ SfxVoidItem DescriptiveStatisticsDialog SID_DESCRIPTIVE_STATISTICS_DIALOG
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2830,7 +2721,6 @@ SfxVoidItem AnalysisOfVarianceDialog SID_ANALYSIS_OF_VARIANCE_DIALOG
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2852,7 +2742,6 @@ SfxVoidItem CorrelationDialog SID_CORRELATION_DIALOG
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2874,7 +2763,6 @@ SfxVoidItem CovarianceDialog SID_COVARIANCE_DIALOG
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2896,7 +2784,6 @@ SfxVoidItem ExponentialSmoothingDialog SID_EXPONENTIAL_SMOOTHING_DIALOG
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2918,7 +2805,6 @@ SfxVoidItem MovingAverageDialog SID_MOVING_AVERAGE_DIALOG
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2940,7 +2826,6 @@ SfxVoidItem RegressionDialog SID_REGRESSION_DIALOG
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2962,7 +2847,6 @@ SfxVoidItem TTestDialog SID_TTEST_DIALOG
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2984,7 +2868,6 @@ SfxVoidItem FTestDialog SID_FTEST_DIALOG
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3006,7 +2889,6 @@ SfxVoidItem ZTestDialog SID_ZTEST_DIALOG
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3028,7 +2910,6 @@ SfxVoidItem ChiSquareTestDialog SID_CHI_SQUARE_TEST_DIALOG
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3050,7 +2931,6 @@ SfxVoidItem SolverDialog SID_OPENDLG_OPTSOLVER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3072,7 +2952,6 @@ SfxVoidItem SearchResultsDialog SID_SEARCH_RESULTS_DIALOG
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3094,7 +2973,6 @@ SfxVoidItem ValidityReference SID_VALIDITY_REFERENCE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -3117,7 +2995,6 @@ SfxVoidItem GoDownToEndOfData SID_CURSORBLKDOWN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3140,7 +3017,6 @@ SfxVoidItem GoDownToEndOfDataSel SID_CURSORBLKDOWN_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3163,7 +3039,6 @@ SfxVoidItem GoLeftBlock SID_CURSORPAGELEFT_
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3186,7 +3061,6 @@ SfxVoidItem GoLeftToStartOfData SID_CURSORBLKLEFT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3209,7 +3083,6 @@ SfxVoidItem GoLeftToStartOfDataSel SID_CURSORBLKLEFT_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3232,7 +3105,6 @@ SfxVoidItem GoRightBlock SID_CURSORPAGERIGHT_
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3255,7 +3127,6 @@ SfxVoidItem GoRightBlockSel SID_CURSORPAGERIGHT_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3278,7 +3149,6 @@ SfxVoidItem GoRightToEndOfData SID_CURSORBLKRIGHT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3301,7 +3171,6 @@ SfxVoidItem GoRightToEndOfDataSel SID_CURSORBLKRIGHT_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3324,7 +3193,6 @@ SfxStringItem GoToCell SID_CURRENTCELL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -3347,7 +3215,6 @@ SfxVoidItem GoToCurrentCell SID_ALIGNCURSOR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3370,7 +3237,6 @@ SfxVoidItem GotoDocument SID_CURRENTDOC
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -3393,7 +3259,6 @@ SfxStringItem GoToObject SID_CURRENTOBJECT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -3416,7 +3281,6 @@ SfxVoidItem GoUpToStartOfData SID_CURSORBLKUP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3439,7 +3303,6 @@ SfxVoidItem GoUpToStartOfDataSel SID_CURSORBLKUP_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3462,7 +3325,6 @@ SfxVoidItem Hide FID_TABLE_HIDE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3485,7 +3347,6 @@ SfxVoidItem HideColumn FID_COL_HIDE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3508,7 +3369,6 @@ SfxVoidItem HideRow FID_ROW_HIDE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3531,7 +3391,6 @@ SvxHorJustifyItem HorizontalAlignment SID_H_ALIGNCELL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3603,7 +3462,6 @@ SfxVoidItem InputLineBlock FID_INPUTLINE_BLOCK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -3626,7 +3484,6 @@ SfxVoidItem InputLineEnter FID_INPUTLINE_ENTER
Container = FALSE,
RecordAbsolute = FALSE,
NoRecord;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -3649,7 +3506,6 @@ SfxVoidItem InputLineMatrix FID_INPUTLINE_MATRIX
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -3672,7 +3528,6 @@ SfxVoidItem InsCellsCtrl SID_TBXCTL_INSCELLS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3697,7 +3552,6 @@ SfxVoidItem Insert FID_INS_TABLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3720,7 +3574,6 @@ SfxVoidItem InsertSheetFromFile FID_INS_TABLE_EXT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3743,7 +3596,6 @@ SfxVoidItem InsertCell FID_INS_CELL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3766,7 +3618,6 @@ SfxVoidItem InsertCellsDown FID_INS_CELLSDOWN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3789,7 +3640,6 @@ SfxVoidItem InsertCellsRight FID_INS_CELLSRIGHT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3812,7 +3662,6 @@ SfxVoidItem InsertColumnBreak FID_INS_COLBRK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3836,7 +3685,6 @@ SfxVoidItem InsertColumns FID_INS_COLUMN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3859,7 +3707,6 @@ SfxVoidItem InsertColumnsBefore FID_INS_COLUMNS_BEFORE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3882,7 +3729,6 @@ SfxVoidItem InsertColumnsAfter FID_INS_COLUMNS_AFTER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3905,7 +3751,6 @@ SfxVoidItem InsertContents FID_INS_CELL_CONTENTS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3928,7 +3773,6 @@ SfxVoidItem InsertCtrl SID_TBXCTL_INSERT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3953,7 +3797,6 @@ SfxVoidItem InsertExternalDataSource SID_EXTERNAL_SOURCE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3976,7 +3819,6 @@ SfxVoidItem InsertFile FID_INSERT_FILE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -3999,7 +3841,6 @@ SfxVoidItem InsertFunction SID_INS_FUNCTION
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -4022,7 +3863,6 @@ SfxVoidItem InsertMatrix SID_INSERT_MATRIX
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -4045,7 +3885,6 @@ SfxVoidItem AddName FID_ADD_NAME
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -4068,7 +3907,6 @@ SfxVoidItem InsertName FID_INSERT_NAME
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4137,7 +3975,6 @@ SfxVoidItem InsertRowBreak FID_INS_ROWBRK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4161,7 +3998,6 @@ SfxVoidItem InsertRows FID_INS_ROW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4184,7 +4020,6 @@ SfxVoidItem InsertRowsBefore FID_INS_ROWS_BEFORE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4207,7 +4042,6 @@ SfxVoidItem InsertRowsAfter FID_INS_ROWS_AFTER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4230,7 +4064,6 @@ SfxVoidItem JumpToNextCell SID_CURSORENTERDOWN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -4253,7 +4086,6 @@ SfxVoidItem JumpToNextTable SID_NEXT_TABLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4276,7 +4108,6 @@ SfxVoidItem JumpToNextTableSel SID_NEXT_TABLE_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4299,7 +4130,6 @@ SfxVoidItem JumpToNextUnprotected SID_NEXT_UNPROTECT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4322,7 +4152,6 @@ SfxVoidItem JumpToPreviousCell SID_CURSORENTERUP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -4345,7 +4174,6 @@ SfxVoidItem JumpToPreviousUnprotected SID_PREV_UNPROTECT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4368,7 +4196,6 @@ SfxVoidItem JumpToPrevTable SID_PREV_TABLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4391,7 +4218,6 @@ SfxVoidItem JumpToPrevTableSel SID_PREV_TABLE_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4414,7 +4240,6 @@ SfxVoidItem JumpToTable SID_CURRENTTAB
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -4437,7 +4262,6 @@ SfxVoidItem LastPage SID_PREVIEW_LAST
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4460,7 +4284,6 @@ SfxVoidItem MergeCells FID_MERGE_ON
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4483,7 +4306,6 @@ SfxVoidItem ToggleMergeCells FID_MERGE_TOGGLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4506,7 +4328,6 @@ SfxBoolItem Mirror SID_OBJECT_MIRROR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -4529,7 +4350,6 @@ SfxVoidItem Move FID_TAB_MOVE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4552,7 +4372,6 @@ SfxStringItem Name FID_TAB_RENAME
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4575,7 +4394,6 @@ SfxVoidItem NextPage SID_PREVIEW_NEXT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4598,7 +4416,6 @@ SfxStringItem NoteText SID_RANGE_NOTETEXT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4623,7 +4440,6 @@ SfxBoolItem NoteVisible FID_NOTE_VISIBLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4648,7 +4464,6 @@ SfxBoolItem ShowNote FID_SHOW_NOTE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4673,7 +4488,6 @@ SfxBoolItem HideNote FID_HIDE_NOTE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4698,7 +4512,6 @@ SfxVoidItem DeleteNote SID_DELETE_NOTE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4721,7 +4534,6 @@ SfxStringItem NumberFormat SID_NUMBER_FORMAT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4746,7 +4558,6 @@ SfxVoidItem NumberFormatCurrency SID_NUMBER_CURRENCY
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4769,7 +4580,6 @@ SfxVoidItem NumberFormatDate SID_NUMBER_DATE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4792,7 +4602,6 @@ SfxVoidItem NumberFormatDecDecimals SID_NUMBER_DECDEC
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4815,7 +4624,6 @@ SfxVoidItem NumberFormatDecimal SID_NUMBER_TWODEC
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4838,7 +4646,6 @@ SfxVoidItem NumberFormatIncDecimals SID_NUMBER_INCDEC
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4861,7 +4668,6 @@ SfxVoidItem NumberFormatPercent SID_NUMBER_PERCENT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4884,7 +4690,6 @@ SfxVoidItem NumberFormatScientific SID_NUMBER_SCIENTIFIC
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4907,7 +4712,6 @@ SfxVoidItem NumberFormatStandard SID_NUMBER_STANDARD
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4930,7 +4734,6 @@ SfxVoidItem NumberFormatTime SID_NUMBER_TIME
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4953,7 +4756,6 @@ SfxInt32Item ObjectHeight SID_OBJECT_HEIGHT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4978,7 +4780,6 @@ SfxInt32Item ObjectLeft SID_OBJECT_LEFT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5003,7 +4804,6 @@ SfxVoidItem ObjectMirrorHorizontal SID_MIRROR_HORIZONTAL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -5026,7 +4826,6 @@ SfxVoidItem ObjectMirrorVertical SID_MIRROR_VERTICAL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -5049,7 +4848,6 @@ SfxInt32Item ObjectTop SID_OBJECT_TOP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5074,7 +4872,6 @@ SfxInt32Item ObjectWidth SID_OBJECT_WIDTH
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5099,7 +4896,6 @@ SfxObjectItem Offset SID_RANGE_OFFSET
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -5122,7 +4918,6 @@ SfxObjectItem OleObject SID_OLE_OBJECT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -5147,7 +4942,6 @@ SfxVoidItem OriginalSize SID_ORIGINALSIZE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -5170,7 +4964,6 @@ SfxBoolItem NormalViewMode FID_NORMALVIEWMODE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5195,7 +4988,6 @@ SfxBoolItem PagebreakMode FID_PAGEBREAKMODE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5220,7 +5012,6 @@ SfxVoidItem PageFormatDialog SID_FORMATPAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5243,7 +5034,6 @@ SfxVoidItem PreviousPage SID_PREVIEW_PREVIOUS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5266,7 +5056,6 @@ SfxVoidItem Protect FID_PROTECT_TABLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5289,7 +5078,6 @@ SfxVoidItem ProtectTraceChangeMode SID_CHG_PROTECT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5312,7 +5100,6 @@ SfxVoidItem PutCell SID_SC_SETTEXT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -5335,7 +5122,6 @@ SfxObjectItem Range SID_SC_RANGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -5358,7 +5144,6 @@ SfxVoidItem RecalcPivotTable SID_PIVOT_RECALC
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -5381,7 +5166,6 @@ SfxVoidItem RefreshArrows SID_DETECTIVE_REFRESH
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5404,7 +5188,6 @@ SfxVoidItem ReImportAfterLoad SID_REIMPORT_AFTER_LOAD
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -5427,7 +5210,6 @@ SfxVoidItem Remove FID_DELETE_TABLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -5451,7 +5233,6 @@ SfxVoidItem ObjectTitleDescription SID_TITLE_DESCRIPTION_OBJECT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5474,7 +5255,6 @@ SfxVoidItem RenameObject SID_RENAME_OBJECT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5566,7 +5346,6 @@ SfxVoidItem ResetAttributes SID_CELL_FORMAT_RESET
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5589,7 +5368,6 @@ SfxVoidItem ResetPrintZoom FID_RESET_PRINTZOOM
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5612,7 +5390,6 @@ SfxInt32Item Row SID_RANGE_ROW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -5637,7 +5414,6 @@ SfxUInt16Item RowHeight FID_ROW_HEIGHT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5662,7 +5438,6 @@ SfxVoidItem SbaImport SID_SBA_IMPORT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -5685,7 +5460,6 @@ SfxVoidItem Scale FID_SCALE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5708,7 +5482,6 @@ SfxVoidItem ScenarioManager SID_SCENARIOS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5777,7 +5550,6 @@ SfxVoidItem SelectArea SID_MARKAREA
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -5800,7 +5572,6 @@ SfxVoidItem SelectOLE SID_OLE_SELECT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -5823,7 +5594,6 @@ SfxVoidItem SelectColumn SID_SELECT_COL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5846,7 +5616,6 @@ SfxVoidItem SelectData SID_MARKDATAAREA
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5869,7 +5638,6 @@ SfxVoidItem SelectDB SID_SELECT_DB
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5891,7 +5659,6 @@ SfxVoidItem DataStreams SID_DATA_STREAMS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5912,7 +5679,6 @@ SfxVoidItem DataStreamsPlay SID_DATA_STREAMS_PLAY
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5933,7 +5699,6 @@ SfxVoidItem DataStreamsStop SID_DATA_STREAMS_STOP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5955,7 +5720,6 @@ SfxVoidItem ManageXMLSource SID_MANAGE_XML_SOURCE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5977,7 +5741,6 @@ SfxObjectItem SelectedObject SID_SC_ACTIVEOBJECT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -6002,7 +5765,6 @@ SfxStringItem SelectedObjectName SID_ACTIVE_OBJ_NAME
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6027,7 +5789,6 @@ SfxObjectItem Selection SID_SC_SELECTION
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -6052,7 +5813,6 @@ SfxVoidItem SelectRow SID_SELECT_ROW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6075,7 +5835,6 @@ SfxStringItem SelectScenario SID_SELECT_SCENARIO
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6098,7 +5857,6 @@ SfxBoolItem SetAnchorToCell SID_ANCHOR_CELL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -6121,7 +5879,6 @@ SfxBoolItem SetAnchorToPage SID_ANCHOR_PAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -6144,7 +5901,6 @@ SfxVoidItem SetInputMode SID_SETINPUTMODE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6167,7 +5923,6 @@ SfxVoidItem SetOptimalColumnWidth FID_COL_OPT_WIDTH
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6190,7 +5945,6 @@ SfxVoidItem SetOptimalColumnWidthDirect FID_COL_OPT_DIRECT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6213,7 +5967,6 @@ SfxVoidItem SetOptimalRowHeight FID_ROW_OPT_HEIGHT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6236,7 +5989,6 @@ SfxVoidItem Show FID_TABLE_SHOW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6259,7 +6011,6 @@ SfxVoidItem ShowChanges FID_CHG_SHOW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6282,7 +6033,6 @@ SfxVoidItem ShowColumn FID_COL_SHOW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6305,7 +6055,6 @@ SfxVoidItem ShowDependents SID_DETECTIVE_ADD_SUCC
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6328,7 +6077,6 @@ SfxVoidItem ShowErrors SID_DETECTIVE_ADD_ERR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6351,7 +6099,6 @@ SfxVoidItem ShowInvalid SID_DETECTIVE_INVALID
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6374,7 +6121,6 @@ SfxVoidItem ShowPrecedents SID_DETECTIVE_ADD_PRED
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6397,7 +6143,6 @@ SfxVoidItem ShowRow FID_ROW_SHOW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6420,7 +6165,6 @@ SfxVoidItem SimpleReferenz WID_SIMPLE_REF
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6443,7 +6187,6 @@ SfxVoidItem SortAscending SID_SORT_ASCENDING
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6466,7 +6209,6 @@ SfxVoidItem SortDescending SID_SORT_DESCENDING
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6489,7 +6231,6 @@ SfxVoidItem SplitCell FID_MERGE_OFF
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6512,7 +6253,6 @@ SfxVoidItem SplitWindow SID_WINDOW_SPLIT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6535,7 +6275,6 @@ SfxVoidItem StandardFonts SID_STANDARD_FONTS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -6559,7 +6298,6 @@ SfxVoidItem EditShapeHyperlink SID_DRAW_HLINK_EDIT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
// /* config: */
AccelConfig = TRUE,
@@ -6583,7 +6321,6 @@ SfxVoidItem DeleteShapeHyperlink SID_DRAW_HLINK_DELETE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6606,7 +6343,6 @@ SfxVoidItem StandardTextAttributes SID_TEXT_STANDARD
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6629,7 +6365,6 @@ SfxUInt16Item StatusBarFunc SID_PSZ_FUNCTION
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6654,7 +6389,6 @@ SfxStringItem StatusDocPos SID_STATUS_DOCPOS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -6678,7 +6412,6 @@ SfxStringItem RowColSelCount SID_ROWCOL_SELCOUNT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -6703,7 +6436,6 @@ SfxStringItem StatusFunction SID_STATUS_SUM
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -6728,7 +6460,6 @@ SfxVoidItem StatusInputLine FID_INPUTLINE_STATUS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -6751,7 +6482,6 @@ SfxStringItem StatusPageStyle SID_STATUS_PAGESTYLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -6776,7 +6506,6 @@ SfxVoidItem StatusScale FID_SCALESTATUS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -6799,7 +6528,6 @@ SfxUInt16Item StatusSelectionMode SID_STATUS_SELMODE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -6824,7 +6552,6 @@ SfxUInt16Item StatusSelectionModeExp SID_STATUS_SELMODE_ERG
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -6849,7 +6576,6 @@ SfxUInt16Item StatusSelectionModeExt SID_STATUS_SELMODE_ERW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -6874,7 +6600,6 @@ SfxUInt16Item StatusSelectionModeNorm SID_STATUS_SELMODE_NORM
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -6899,7 +6624,6 @@ SfxInt16Item Table SID_RANGE_TABLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -6924,7 +6648,6 @@ SfxInt16Item TableCount SID_TABLES_COUNT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -6949,7 +6672,6 @@ SfxVoidItem TableOperation SID_TABOP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -6972,7 +6694,6 @@ SfxVoidItem TableOperationDialog SID_OPENDLG_TABOP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6995,7 +6716,6 @@ SfxVoidItem RenameTable FID_TAB_MENU_RENAME
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -7018,7 +6738,6 @@ SfxObjectItem Tables SID_TABLES_GET
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -7043,7 +6762,6 @@ SfxVoidItem TableSelectAll FID_TAB_SELECTALL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -7066,7 +6784,6 @@ SfxVoidItem TableDeselectAll FID_TAB_DESELECTALL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -7089,7 +6806,6 @@ SfxVoidItem TableEvents FID_TAB_EVENTS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -7112,7 +6828,6 @@ SfxVoidItem TextAttributes SID_DRAWTEXT_ATTR_DLG
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -7136,7 +6851,6 @@ SfxVoidItem AssignMacro SID_ASSIGNMACRO
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -7159,7 +6873,6 @@ SfxVoidItem TextToColumns SID_TEXT_TO_COLUMNS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -7182,7 +6895,6 @@ SfxStringItem TextValue SID_RANGE_TEXTVALUE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -7207,7 +6919,6 @@ SfxVoidItem ToggleAnchorType SID_ANCHOR_TOGGLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -7230,7 +6941,6 @@ SfxVoidItem ToggleRelative SID_TOGGLE_REL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -7253,7 +6963,6 @@ SfxVoidItem ToolProtectionDocument FID_PROTECT_DOC
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -7276,7 +6985,6 @@ SfxVoidItem ToolsOptions SID_SCOPTIONS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -7299,7 +7007,6 @@ SfxBoolItem TraceChangeMode FID_CHG_RECORD
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7324,7 +7031,6 @@ SfxBoolItem UnderlineDotted SID_ULINE_VAL_DOTTED
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7349,7 +7055,6 @@ SfxBoolItem UnderlineDouble SID_ULINE_VAL_DOUBLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7374,7 +7079,6 @@ SfxBoolItem UnderlineNone SID_ULINE_VAL_NONE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7399,7 +7103,6 @@ SfxBoolItem UnderlineSingle SID_ULINE_VAL_SINGLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7424,7 +7127,6 @@ SfxVoidItem UpdateChart SID_UPDATECHART
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -7447,7 +7149,6 @@ SfxVoidItem UpdateTableLinks SID_UPDATETABLINKS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -7470,7 +7171,6 @@ SfxVoidItem Validation FID_VALIDATION
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -7493,7 +7193,6 @@ ScDoubleItem Value SID_RANGE_VALUE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -7518,7 +7217,6 @@ SvxVerJustifyItem VerticalAlignment SID_V_ALIGNCELL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7543,7 +7241,6 @@ SfxBoolItem InputLineVisible FID_TOGGLEINPUTLINE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7568,7 +7265,6 @@ SfxBoolItem ViewRowColumnHeaders FID_TOGGLEHEADERS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7593,7 +7289,6 @@ SfxBoolItem ToggleFormula FID_TOGGLEFORMULA
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7619,7 +7314,6 @@ SfxBoolItem ViewValueHighlighting FID_TOGGLESYNTAX
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7644,7 +7338,6 @@ SfxBoolItem Visible FID_TABLE_VISIBLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7669,7 +7362,6 @@ SfxBoolItem WrapText SID_ATTR_ALIGN_LINEBREAK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7694,7 +7386,6 @@ SfxVoidItem ZoomIn SID_PREVIEW_ZOOMIN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -7717,7 +7408,6 @@ SfxVoidItem ZoomOut SID_PREVIEW_ZOOMOUT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -7740,7 +7430,6 @@ SfxVoidItem FocusInputLine SID_FOCUS_INPUTLINE
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -7854,7 +7543,6 @@ SfxVoidItem DataPilotFilter SID_DP_FILTER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -7877,7 +7565,6 @@ ScProtectionAttr Protection SID_SCATTR_PROTECTION
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7902,7 +7589,6 @@ SfxVoidItem SelectArrayFormula SID_MARKARRAYFORMULA
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -7925,7 +7611,6 @@ SfxBoolItem SheetRightToLeft FID_TAB_RTL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -7948,7 +7633,6 @@ SfxVoidItem ShareDocument SID_SHARE_DOC
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -7971,7 +7655,6 @@ SfxBoolItem ToggleSheetGrid FID_TAB_TOGGLE_GRID
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -7996,7 +7679,6 @@ SvxColorItem TabBgColor FID_TAB_SET_TAB_BG_COLOR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -8021,7 +7703,6 @@ SfxVoidItem MarkPrecedents SID_DETECTIVE_MARK_PRED
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -8044,7 +7725,6 @@ SfxVoidItem MarkDependents SID_DETECTIVE_MARK_SUCC
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -8067,7 +7747,6 @@ SfxVoidItem InsertCurrentDate SID_INSERT_CURRENT_DATE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -8090,7 +7769,6 @@ SfxVoidItem InsertCurrentTime SID_INSERT_CURRENT_TIME
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -8113,7 +7791,6 @@ SfxVoidItem SetTabBgColor FID_TAB_MENU_SET_TAB_BG_COLOR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -8135,7 +7812,6 @@ SfxVoidItem InsertFieldSheet SID_INSERT_FIELD_SHEET
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -8157,7 +7833,6 @@ SfxVoidItem InsertFieldDocTitle SID_INSERT_FIELD_TITLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -8179,7 +7854,6 @@ SfxVoidItem InsertFieldDateVariable SID_INSERT_FIELD_DATE_VAR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -8202,7 +7876,6 @@ SfxVoidItem OpenFromCalc SID_OPEN_CALC
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxStringItem
@@ -8227,7 +7900,6 @@ SfxVoidItem ConvertFormulaToValue SID_CONVERT_FORMULA_TO_VALUE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxStringItem
@@ -8252,7 +7924,6 @@ SfxVoidItem UnicodeNotationToggle SID_UNICODE_NOTATION_TOGGLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -8274,7 +7945,6 @@ SfxVoidItem ShowDetail SID_OUTLINE_SHOW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -8296,7 +7966,6 @@ SfxVoidItem HideDetail SID_OUTLINE_HIDE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -8318,7 +7987,6 @@ SfxVoidItem Group SID_OUTLINE_MAKE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -8340,7 +8008,6 @@ SfxVoidItem Ungroup SID_OUTLINE_REMOVE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -8362,7 +8029,6 @@ SfxVoidItem EnterString SID_ENTER_STRING
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -8384,7 +8050,6 @@ SfxVoidItem ExportAsGraphic SID_EXPORT_AS_GRAPHIC
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -8406,7 +8071,6 @@ SfxUInt16Item NumberFormatType SID_NUMBER_TYPE_FORMAT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
diff --git a/sd/sdi/sdnew.sdi b/sd/sdi/sdnew.sdi
index 540df89f5ad2..fd7bfe90fe21 100644
--- a/sd/sdi/sdnew.sdi
+++ b/sd/sdi/sdnew.sdi
@@ -26,7 +26,6 @@ SfxBoolItem VerticalTextFitToSizeTool SID_TEXT_FITTOSIZE_VERTICAL
ReadOnlyDoc = FALSE,
Toggle = FALSE,
Container = FALSE,
- Synchron;
Readonly = FALSE,
/* config: */
@@ -46,7 +45,6 @@ SvxObjectItem RulerObject SID_RULER_OBJECT
HasDialog = FALSE,
ReadOnlyDoc = TRUE,
Toggle = FALSE,
- Synchron;
/* plugin: */
Container = FALSE,
diff --git a/sd/sdi/sdraw.sdi b/sd/sdi/sdraw.sdi
index 6eea637d0196..b28c5eedd69d 100644
--- a/sd/sdi/sdraw.sdi
+++ b/sd/sdi/sdraw.sdi
@@ -28,7 +28,6 @@ SfxVoidItem AdvancedMode SID_OBJECT_CHOOSE_MODE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -52,7 +51,6 @@ SfxVoidItem AnimationEffects SID_ANIMATION_EFFECTS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -74,7 +72,6 @@ SfxBoolItem AnimationObjects SID_ANIMATION_OBJECTS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -98,7 +95,6 @@ SfxBoolItem AnimatorAddObject SID_ANIMATOR_ADD
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -122,7 +118,6 @@ SfxBoolItem AnimatorCreateObject SID_ANIMATOR_CREATE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -146,7 +141,6 @@ SfxBoolItem AnimatorInit SID_ANIMATOR_INIT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -170,7 +164,6 @@ SfxUInt16Item AnimatorState SID_ANIMATOR_STATE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -194,7 +187,6 @@ SfxVoidItem ArrowsToolbox SID_DRAWTBX_ARROWS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -218,7 +210,6 @@ SfxVoidItem Backward SID_MOREBACK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -240,7 +231,6 @@ SfxVoidItem BeforeObject SID_BEFORE_OBJ
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -262,7 +252,6 @@ SfxVoidItem BehindObject SID_BEHIND_OBJ
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -284,7 +273,6 @@ SfxVoidItem Break SID_BREAK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -306,7 +294,6 @@ SfxVoidItem CapturePoint SID_CAPTUREPOINT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -328,7 +315,6 @@ SfxVoidItem ChangeBezier SID_CHANGEBEZIER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -350,7 +336,6 @@ SfxVoidItem ChangePolygon SID_CHANGEPOLYGON
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -372,7 +357,6 @@ SfxBoolItem ClickChangeRotation SID_CLICK_CHANGE_ROTATION
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -396,7 +380,6 @@ SfxVoidItem CloseObject SID_OBJECT_CLOSE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -418,7 +401,6 @@ SfxBoolItem ColorView SID_COLORVIEW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -442,7 +424,6 @@ SfxVoidItem Combine SID_COMBINE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -464,7 +445,6 @@ SfxBoolItem Cone SID_3D_CONE
Container = FALSE,
RecordAbsolute = FALSE,
RecordManual;
- Synchron;
Readonly = FALSE,
@@ -488,7 +468,6 @@ SfxVoidItem Connect SID_CONNECT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -510,7 +489,6 @@ SfxBoolItem Connector SID_TOOL_CONNECTOR
Container = FALSE,
RecordAbsolute = FALSE,
RecordManual;
- Synchron;
Readonly = FALSE,
@@ -534,7 +512,6 @@ SfxBoolItem ConnectorArrowEnd SID_CONNECTOR_ARROW_END
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -558,7 +535,6 @@ SfxBoolItem ConnectorArrows SID_CONNECTOR_ARROWS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -582,7 +558,6 @@ SfxBoolItem ConnectorArrowStart SID_CONNECTOR_ARROW_START
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -606,7 +581,6 @@ SfxVoidItem ConnectorAttributes SID_CONNECTION_DLG
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -628,7 +602,6 @@ SfxBoolItem ConnectorCircleEnd SID_CONNECTOR_CIRCLE_END
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -652,7 +625,6 @@ SfxBoolItem ConnectorCircles SID_CONNECTOR_CIRCLES
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -676,7 +648,6 @@ SfxBoolItem ConnectorCircleStart SID_CONNECTOR_CIRCLE_START
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -700,7 +671,6 @@ SfxBoolItem ConnectorCurve SID_CONNECTOR_CURVE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -724,7 +694,6 @@ SfxBoolItem ConnectorCurveArrowEnd SID_CONNECTOR_CURVE_ARROW_END
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -748,7 +717,6 @@ SfxBoolItem ConnectorCurveArrows SID_CONNECTOR_CURVE_ARROWS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -772,7 +740,6 @@ SfxBoolItem ConnectorCurveArrowStart SID_CONNECTOR_CURVE_ARROW_START
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -796,7 +763,6 @@ SfxBoolItem ConnectorCurveCircleEnd SID_CONNECTOR_CURVE_CIRCLE_END
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -820,7 +786,6 @@ SfxBoolItem ConnectorCurveCircles SID_CONNECTOR_CURVE_CIRCLES
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -844,7 +809,6 @@ SfxBoolItem ConnectorCurveCircleStart SID_CONNECTOR_CURVE_CIRCLE_START
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -868,7 +832,6 @@ SfxBoolItem ConnectorLine SID_CONNECTOR_LINE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -892,7 +855,6 @@ SfxBoolItem ConnectorLineArrowEnd SID_CONNECTOR_LINE_ARROW_END
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -916,7 +878,6 @@ SfxBoolItem ConnectorLineArrows SID_CONNECTOR_LINE_ARROWS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -940,7 +901,6 @@ SfxBoolItem ConnectorLineArrowStart SID_CONNECTOR_LINE_ARROW_START
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -964,7 +924,6 @@ SfxBoolItem ConnectorLineCircleEnd SID_CONNECTOR_LINE_CIRCLE_END
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -988,7 +947,6 @@ SfxBoolItem ConnectorLineCircles SID_CONNECTOR_LINE_CIRCLES
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -1012,7 +970,6 @@ SfxBoolItem ConnectorLineCircleStart SID_CONNECTOR_LINE_CIRCLE_START
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -1036,7 +993,6 @@ SfxBoolItem ConnectorLines SID_CONNECTOR_LINES
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -1060,7 +1016,6 @@ SfxBoolItem ConnectorLinesArrowEnd SID_CONNECTOR_LINES_ARROW_END
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -1084,7 +1039,6 @@ SfxBoolItem ConnectorLinesArrows SID_CONNECTOR_LINES_ARROWS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -1108,7 +1062,6 @@ SfxBoolItem ConnectorLinesArrowStart SID_CONNECTOR_LINES_ARROW_START
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -1132,7 +1085,6 @@ SfxBoolItem ConnectorLinesCircleEnd SID_CONNECTOR_LINES_CIRCLE_END
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -1156,7 +1108,6 @@ SfxBoolItem ConnectorLinesCircles SID_CONNECTOR_LINES_CIRCLES
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -1180,7 +1131,6 @@ SfxBoolItem ConnectorLinesCircleStart SID_CONNECTOR_LINES_CIRCLE_START
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -1204,7 +1154,6 @@ SfxVoidItem ConnectorToolbox SID_DRAWTBX_CONNECTORS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -1228,7 +1177,6 @@ SfxVoidItem convert_to_contour SID_CONVERT_TO_CONTOUR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1250,7 +1198,6 @@ SfxVoidItem ConvertInto3D SID_CONVERT_TO_3D
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1272,7 +1219,6 @@ SfxVoidItem ConvertInto3DLathe SID_CONVERT_TO_3D_LATHE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1294,7 +1240,6 @@ SfxVoidItem ConvertInto3DLatheFast SID_CONVERT_TO_3D_LATHE_FAST
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1316,7 +1261,6 @@ SfxVoidItem ConvertIntoBitmap SID_CONVERT_TO_BITMAP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1338,7 +1282,6 @@ SfxVoidItem ConvertIntoMetaFile SID_CONVERT_TO_METAFILE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1360,7 +1303,6 @@ SfxVoidItem CopyObjects SID_COPYOBJECTS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1454,7 +1396,6 @@ SfxBoolItem Cube SID_3D_CUBE
Container = FALSE,
RecordAbsolute = FALSE,
RecordManual;
- Synchron;
Readonly = FALSE,
@@ -1478,7 +1419,6 @@ SfxVoidItem CustomShowDialog SID_CUSTOMSHOW_DLG
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1500,7 +1440,6 @@ SfxBoolItem Cylinder SID_3D_CYLINDER
Container = FALSE,
RecordAbsolute = FALSE,
RecordManual;
- Synchron;
Readonly = FALSE,
@@ -1524,7 +1463,6 @@ SfxBoolItem Cyramid SID_3D_PYRAMID
Container = FALSE,
RecordAbsolute = FALSE,
RecordManual;
- Synchron;
Readonly = FALSE,
@@ -1548,7 +1486,6 @@ SfxVoidItem DeleteLayer SID_DELETE_LAYER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1570,7 +1507,6 @@ SfxVoidItem DeletePage SID_DELETE_PAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1592,7 +1528,6 @@ SfxStringItem DeleteSnapItem SID_DELETE_SNAPITEM
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -1616,7 +1551,6 @@ SfxVoidItem DeSelect SID_UNSELECT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -1637,7 +1571,6 @@ SfxBoolItem DiaMode SID_SLIDE_SORTER_MODE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -1661,7 +1594,6 @@ SfxVoidItem Dismantle SID_DISMANTLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1683,7 +1615,6 @@ SfxBoolItem DoubleClickTextEdit SID_DOUBLECLICK_TEXTEDIT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -1707,7 +1638,6 @@ SfxBoolItem DrawingMode SID_DRAWINGMODE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -1731,7 +1661,6 @@ SfxVoidItem DuplicatePage SID_DUPLICATE_PAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1753,7 +1682,6 @@ SfxVoidItem EditHyperlink SID_EDIT_HYPERLINK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -1775,7 +1703,6 @@ SfxVoidItem EditOutline SID_EDIT_OUTLINER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -1797,7 +1724,6 @@ SfxBoolItem CustomAnimation SID_CUSTOM_ANIMATION_PANEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -1820,7 +1746,6 @@ SfxBoolItem CustomAnimationSchemes SID_CUSTOM_ANIMATION_SCHEMES_PANEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -1844,7 +1769,6 @@ SfxVoidItem EllipseToolbox SID_DRAWTBX_ELLIPSES
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -1868,7 +1792,6 @@ SfxVoidItem ExpandPage SID_EXPAND_PAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1890,7 +1813,6 @@ SfxVoidItem SetFillColor SID_SETFILLCOLOR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -1912,7 +1834,6 @@ SfxVoidItem Forward SID_MOREFRONT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1934,7 +1855,6 @@ SfxUInt32Item GetBlue SID_GETBLUE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -1956,7 +1876,6 @@ SfxUInt32Item GetFillStyle SID_GETFILLSTYLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -1980,7 +1899,6 @@ SfxUInt32Item GetGreen SID_GETGREEN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -2002,7 +1920,6 @@ SfxUInt32Item GetLineStyle SID_GETLINESTYLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2026,7 +1943,6 @@ SfxUInt32Item GetLineWidth SID_GETLINEWIDTH
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2050,7 +1966,6 @@ SfxUInt32Item GetRed SID_GETRED
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -2072,7 +1987,6 @@ SfxBoolItem GlueEditMode SID_GLUE_EDITMODE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2096,7 +2010,6 @@ SfxUInt16Item GlueEscapeDirection SID_GLUE_ESCDIR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2120,7 +2033,6 @@ SfxBoolItem GlueEscapeDirectionBottom SID_GLUE_ESCDIR_BOTTOM
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2144,7 +2056,6 @@ SfxBoolItem GlueEscapeDirectionLeft SID_GLUE_ESCDIR_LEFT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2168,7 +2079,6 @@ SfxBoolItem GlueEscapeDirectionRight SID_GLUE_ESCDIR_RIGHT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2192,7 +2102,6 @@ SfxBoolItem GlueEscapeDirectionTop SID_GLUE_ESCDIR_TOP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2216,7 +2125,6 @@ SfxBoolItem GlueHorzAlignCenter SID_GLUE_HORZALIGN_CENTER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2240,7 +2148,6 @@ SfxBoolItem GlueHorzAlignLeft SID_GLUE_HORZALIGN_LEFT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2264,7 +2171,6 @@ SfxBoolItem GlueHorzAlignRight SID_GLUE_HORZALIGN_RIGHT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2288,7 +2194,6 @@ SfxBoolItem GlueInsertPoint SID_GLUE_INSERT_POINT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2312,7 +2217,6 @@ SfxBoolItem GluePercent SID_GLUE_PERCENT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2336,7 +2240,6 @@ SfxBoolItem GlueVertAlignBottom SID_GLUE_VERTALIGN_BOTTOM
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2360,7 +2263,6 @@ SfxBoolItem GlueVertAlignCenter SID_GLUE_VERTALIGN_CENTER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2384,7 +2286,6 @@ SfxBoolItem GlueVertAlignTop SID_GLUE_VERTALIGN_TOP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2408,7 +2309,6 @@ SfxVoidItem Gradient SID_GRADIENT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -2430,7 +2330,6 @@ SfxVoidItem GradientEndColor SID_SETGRADENDCOLOR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -2452,7 +2351,6 @@ SfxVoidItem GradientStartColor SID_SETGRADSTARTCOLOR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -2474,7 +2372,6 @@ SfxVoidItem GraphicExport SID_GRAPHIC_EXPORT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -2496,7 +2393,6 @@ SfxBoolItem GridFront SID_GRID_FRONT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2520,7 +2416,6 @@ SfxBoolItem HalfSphere SID_3D_HALF_SPHERE
Container = FALSE,
RecordAbsolute = FALSE,
RecordManual;
- Synchron;
Readonly = FALSE,
@@ -2544,7 +2439,6 @@ SfxVoidItem HandoutMasterPage SID_HANDOUT_MASTERPAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -2569,7 +2463,6 @@ SfxBoolItem HandoutMode SID_HANDOUT_MASTER_MODE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2593,7 +2486,6 @@ SfxVoidItem Hatch SID_HATCH
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -2615,7 +2507,6 @@ SfxVoidItem HatchColor SID_SETHATCHCOLOR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -2637,7 +2528,6 @@ SfxBoolItem HelplinesFront SID_HELPLINES_FRONT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2661,7 +2551,6 @@ SfxBoolItem HelplinesUse SID_HELPLINES_USE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2685,7 +2574,6 @@ SfxBoolItem HelplinesVisible SID_HELPLINES_VISIBLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2709,7 +2597,6 @@ SfxVoidItem HideSlide SID_HIDE_SLIDE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -2731,7 +2618,6 @@ SfxVoidItem ShowSlide SID_SHOW_SLIDE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -2753,7 +2639,6 @@ SfxBoolItem Hyphenation SID_HYPHENATION
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2777,7 +2662,6 @@ SfxVoidItem ImportFromFile SID_INSERTFILE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2799,7 +2683,6 @@ SfxVoidItem InsertAuthorField SID_INSERT_FLD_AUTHOR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2821,7 +2704,6 @@ SfxVoidItem InsertDateFieldFix SID_INSERT_FLD_DATE_FIX
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2843,7 +2725,6 @@ SfxVoidItem InsertDateFieldVar SID_INSERT_FLD_DATE_VAR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2865,7 +2746,6 @@ SfxVoidItem InsertFileField SID_INSERT_FLD_FILE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2887,7 +2767,6 @@ SfxVoidItem InsertLayer SID_INSERTLAYER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2909,7 +2788,6 @@ SfxVoidItem InsertPage SID_INSERTPAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2931,7 +2809,6 @@ SfxVoidItem InsertPageField SID_INSERT_FLD_PAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2953,7 +2830,6 @@ SfxVoidItem InsertPageTitleField SID_INSERT_FLD_PAGE_TITLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2975,7 +2851,6 @@ SfxVoidItem InsertPagesField SID_INSERT_FLD_PAGES
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2997,7 +2872,6 @@ SfxVoidItem InsertPageQuick SID_INSERTPAGE_QUICK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3019,7 +2893,6 @@ SfxVoidItem InsertTimeFieldFix SID_INSERT_FLD_TIME_FIX
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3041,7 +2914,6 @@ SfxVoidItem InsertTimeFieldVar SID_INSERT_FLD_TIME_VAR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3063,7 +2935,6 @@ SfxVoidItem InsertToolbox SID_DRAWTBX_INSERT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3087,7 +2958,6 @@ SfxVoidItem InteractiveGradient SID_OBJECT_GRADIENT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3109,7 +2979,6 @@ SfxVoidItem InteractiveTransparence SID_OBJECT_TRANSPARENCE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3131,7 +3000,6 @@ SfxVoidItem LayerMode SID_LAYERMODE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -3156,7 +3024,6 @@ SfxStringItem LayoutStatus SID_STATUS_LAYOUT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3180,7 +3047,6 @@ SfxBoolItem LeaveAllGroups SID_LEAVE_ALL_GROUPS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3204,7 +3070,6 @@ SfxBoolItem LineArrowCircle SID_LINE_ARROW_CIRCLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -3228,7 +3093,6 @@ SfxBoolItem LineArrowEnd SID_LINE_ARROW_END
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -3252,7 +3116,6 @@ SfxBoolItem LineArrows SID_LINE_ARROWS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -3276,7 +3139,6 @@ SfxBoolItem LineArrowSquare SID_LINE_ARROW_SQUARE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -3300,7 +3162,6 @@ SfxBoolItem LineArrowStart SID_LINE_ARROW_START
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -3324,7 +3185,6 @@ SfxBoolItem LineCircleArrow SID_LINE_CIRCLE_ARROW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -3348,7 +3208,6 @@ SfxVoidItem LineColor SID_SETLINECOLOR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -3370,7 +3229,6 @@ SfxVoidItem LineEndPolygon SID_LINEEND_POLYGON
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -3392,7 +3250,6 @@ SfxBoolItem LineSquareArrow SID_LINE_SQUARE_ARROW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -3416,7 +3273,6 @@ SfxVoidItem LineTo SID_LINETO
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -3438,7 +3294,6 @@ SfxVoidItem LineToolbox SID_DRAWTBX_LINES
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3462,7 +3317,6 @@ SfxVoidItem ManageLinks SID_MANAGE_LINKS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3484,7 +3338,6 @@ SfxVoidItem MasterPage SID_MASTERPAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -3509,7 +3362,6 @@ SfxVoidItem MeasureAttributes SID_MEASURE_DLG
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3531,7 +3383,6 @@ SfxBoolItem MeasureLine SID_DRAW_MEASURELINE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -3555,7 +3406,6 @@ SfxVoidItem MirrorHorz SID_HORIZONTAL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -3577,7 +3427,6 @@ SfxVoidItem MirrorVert SID_VERTICAL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -3599,7 +3448,6 @@ SfxVoidItem ModifyField SID_MODIFY_FIELD
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3621,7 +3469,6 @@ SfxVoidItem ModifyLayer SID_MODIFYLAYER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3643,7 +3490,6 @@ SfxVoidItem ModifyPage SID_MODIFYPAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3665,7 +3511,6 @@ SfxUInt32Item AssignLayout SID_ASSIGN_LAYOUT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -3688,7 +3533,6 @@ SfxBoolItem ToggleTabBarVisibility SID_TOGGLE_TABBAR_VISIBILITY
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3711,7 +3555,6 @@ SfxVoidItem DisplayMode SID_DISPLAY_MODE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -3733,7 +3576,6 @@ SfxVoidItem ModifyPresentationObject SID_PRESENTATIONOBJECT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -3755,7 +3597,6 @@ SfxVoidItem Morphing SID_POLYGON_MORPHING
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3777,7 +3618,6 @@ SfxVoidItem MoveTo SID_MOVETO
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -3799,7 +3639,6 @@ SfxVoidItem NameGroup SID_NAME_GROUP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3822,7 +3661,6 @@ SfxVoidItem ObjectTitleDescription SID_OBJECT_TITLE_DESCRIPTION
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3844,7 +3682,6 @@ SfxBoolItem NavigatorInit SID_NAVIGATOR_INIT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3868,7 +3705,6 @@ SfxStringItem NavigatorObject SID_NAVIGATOR_OBJECT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3892,7 +3728,6 @@ SfxUInt16Item NavigatorPage SID_NAVIGATOR_PAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3916,7 +3751,6 @@ SfxStringItem NavigatorPageName SID_NAVIGATOR_PAGENAME
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3940,7 +3774,6 @@ SfxBoolItem NavigatorPen SID_NAVIGATOR_PEN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3964,7 +3797,6 @@ SfxUInt32Item NavigatorState SID_NAVIGATOR_STATE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3988,7 +3820,6 @@ SfxBoolItem NewRouting SID_CONNECTION_NEW_ROUTING
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4012,7 +3843,6 @@ SfxVoidItem NotesMasterPage SID_NOTES_MASTER_MODE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4034,7 +3864,6 @@ SfxVoidItem NotesMode SID_NOTES_MODE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4058,7 +3887,6 @@ SfxVoidItem ObjectPosition SID_POSITION
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4082,7 +3910,6 @@ SfxVoidItem Objects3DToolbox SID_DRAWTBX_3D_OBJECTS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4106,7 +3933,6 @@ SfxVoidItem OriginalSize SID_ORIGINAL_SIZE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -4128,7 +3954,6 @@ SfxVoidItem OutlineMode SID_OUTLINE_MODE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4248,7 +4073,6 @@ SfxVoidItem PackAndGo SID_PACKNGO
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -4270,7 +4094,6 @@ SfxVoidItem PageMargin SID_PAGEMARGIN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -4292,7 +4115,6 @@ SfxVoidItem PageMode SID_PAGEMODE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -4317,7 +4139,6 @@ SfxVoidItem PageSetup SID_PAGESETUP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4339,7 +4160,6 @@ SfxVoidItem PageSize SID_PAGESIZE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -4385,7 +4205,6 @@ SfxStringItem PageStatus SID_STATUS_PAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4409,7 +4228,6 @@ SfxBoolItem PickThrough SID_PICK_THROUGH
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4433,7 +4251,6 @@ SfxBoolItem Polygon SID_DRAW_POLYGON
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -4501,7 +4318,6 @@ SfxVoidItem PresentationDialog SID_PRESENTATION_DLG
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4523,7 +4339,6 @@ SfxVoidItem Remote SID_REMOTE_DLG
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -4545,7 +4360,6 @@ SfxVoidItem PresentationEnd SID_PRESENTATION_END
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -4567,7 +4381,6 @@ SfxVoidItem ClearUndoStack SID_CLEAR_UNDO_STACK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -4589,7 +4402,6 @@ SfxVoidItem PresentationLayout SID_PRESENTATION_LAYOUT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4611,7 +4423,6 @@ SfxUInt32Item PreviewState SID_PREVIEW_STATE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4635,7 +4446,6 @@ SfxBoolItem PreviewWindow SID_PREVIEW_WIN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4659,7 +4469,6 @@ SfxBoolItem QuickEdit SID_QUICKEDIT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4683,7 +4492,6 @@ SfxVoidItem RectangleToolbox SID_DRAWTBX_RECTANGLES
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4707,7 +4515,6 @@ SfxVoidItem RehearseTimings SID_REHEARSE_TIMINGS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -4729,7 +4536,6 @@ SfxVoidItem RenameLayer SID_RENAMELAYER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4751,7 +4557,6 @@ SfxVoidItem RenamePage SID_RENAMEPAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4773,7 +4578,6 @@ SfxVoidItem RenamePageQuick SID_RENAMEPAGE_QUICK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -4795,7 +4599,6 @@ SfxVoidItem ReverseOrder SID_REVERSE_ORDER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4817,7 +4620,6 @@ SvxObjectItem RulerObject SID_RULER_OBJECT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4841,7 +4643,6 @@ SfxVoidItem SelectAt SID_SELECTAT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -4863,7 +4664,6 @@ SfxVoidItem SelectGradient SID_SELECTGRADIENT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -4885,7 +4685,6 @@ SfxVoidItem SelectHatch SID_SELECTHATCH
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -4907,7 +4706,6 @@ SfxVoidItem SetFillStyle SID_SETFILLSTYLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -4929,7 +4727,6 @@ SfxVoidItem SetLineStyle SID_SETLINESTYLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -4951,7 +4748,6 @@ SfxVoidItem SetLineWidth SID_SETLINEWIDTH
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -4973,7 +4769,6 @@ SfxStringItem SetSnapItem SID_SET_SNAPITEM
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5021,7 +4816,6 @@ SfxBoolItem Shell3D SID_3D_SHELL
Container = FALSE,
RecordAbsolute = FALSE,
RecordManual;
- Synchron;
Readonly = FALSE,
@@ -5045,7 +4839,6 @@ SfxBoolItem SlideChangeWindow SID_SLIDE_TRANSITIONS_PANEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5069,7 +4862,6 @@ SfxVoidItem SlideMasterPage SID_SLIDE_MASTER_MODE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5091,7 +4883,6 @@ SfxBoolItem SnapBorder SID_SNAP_BORDER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5115,7 +4906,6 @@ SfxBoolItem SnapFrame SID_SNAP_FRAME
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5139,7 +4929,6 @@ SfxBoolItem SnapPoints SID_SNAP_POINTS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5163,7 +4952,6 @@ SfxBoolItem SolidCreate SID_SOLID_CREATE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5187,7 +4975,6 @@ SfxBoolItem Sphere SID_3D_SPHERE
Container = FALSE,
RecordAbsolute = FALSE,
RecordManual;
- Synchron;
Readonly = FALSE,
@@ -5211,7 +4998,6 @@ SfxVoidItem StartApplication SID_STARTAPP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -5233,7 +5019,6 @@ SfxVoidItem SummaryPage SID_SUMMARY_PAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5255,7 +5040,6 @@ SfxVoidItem SwitchLayer SID_SWITCHLAYER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -5277,7 +5061,6 @@ SfxVoidItem SwitchPage SID_SWITCHPAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -5299,7 +5082,6 @@ SfxVoidItem SwitchPointEdit SID_SWITCH_POINTEDIT
Container = FALSE,
RecordAbsolute = FALSE,
RecordManual;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -5321,7 +5103,6 @@ SfxBoolItem TextAlignment SID_TEXTALIGNMENT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5345,7 +5126,6 @@ SfxVoidItem TextAttributes SID_TEXTATTR_DLG
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5367,7 +5147,6 @@ SfxBoolItem TextFitToSizeTool SID_TEXT_FITTOSIZE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5391,7 +5170,6 @@ SfxBoolItem TextAutoFitToSize SID_OUTLINE_TEXT_AUTOFIT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5415,7 +5193,6 @@ SfxVoidItem TextToolbox SID_DRAWTBX_TEXT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5439,7 +5216,6 @@ SfxBoolItem Torus SID_3D_TORUS
Container = FALSE,
RecordAbsolute = FALSE,
RecordManual;
- Synchron;
Readonly = FALSE,
@@ -5463,7 +5239,6 @@ SfxBoolItem VerticalTextFitToSizeTool SID_TEXT_FITTOSIZE_VERTICAL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5487,7 +5262,6 @@ SfxVoidItem ZoomPanning SID_ZOOM_PANNING
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5509,7 +5283,6 @@ SfxVoidItem ZoomMode SID_ZOOM_MODE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5531,7 +5304,6 @@ SfxVoidItem Mirror SID_OBJECT_MIRROR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -5556,7 +5328,6 @@ SfxVoidItem HeaderAndFooter SID_HEADER_AND_FOOTER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5578,7 +5349,6 @@ SfxVoidItem InsertPageNumber SID_INSERT_PAGE_NUMBER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5600,7 +5370,6 @@ SfxVoidItem InsertDateAndTime SID_INSERT_DATE_TIME
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5622,7 +5391,6 @@ SfxVoidItem MasterLayouts SID_MASTER_LAYOUTS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5643,7 +5411,6 @@ SfxBoolItem DrawFontwork SID_DRAW_FONTWORK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -5666,7 +5433,6 @@ SfxBoolItem DrawFontworkVertical SID_DRAW_FONTWORK_VERTICAL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -5693,7 +5459,6 @@ SfxBoolItem IsPageObj ID_VAL_ISPAGEOBJ)
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5714,7 +5479,6 @@ SfxVoidItem DeleteMasterPage SID_DELETE_MASTER_PAGE()
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5734,7 +5498,6 @@ SfxVoidItem RenameMasterPage SID_RENAME_MASTER_PAGE()
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5755,7 +5518,6 @@ SfxVoidItem CloseMasterView SID_CLOSE_MASTER_VIEW()
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5777,7 +5539,6 @@ SfxVoidItem SelectBackground SID_SELECT_BACKGROUND
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -5799,7 +5560,6 @@ SfxVoidItem SaveBackground SID_SAVE_BACKGROUND
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -5820,7 +5580,6 @@ SfxBoolItem DisplayMasterBackground SID_DISPLAY_MASTER_BACKGROUND
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5842,7 +5601,6 @@ SfxBoolItem DisplayMasterObjects SID_DISPLAY_MASTER_OBJECTS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5865,7 +5623,6 @@ SfxVoidItem TableToolBox SID_TABLE_TOOLBOX
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -5887,7 +5644,6 @@ SfxVoidItem DistributeColumns SID_TABLE_DISTRIBUTE_COLUMNS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5909,7 +5665,6 @@ SfxVoidItem DistributeRows SID_TABLE_DISTRIBUTE_ROWS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5930,7 +5685,6 @@ SfxVoidItem TaskPaneApplyToAllSlides SID_TP_APPLY_TO_ALL_SLIDES
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5953,7 +5707,6 @@ SfxVoidItem TaskPaneApplyToSelectedSlides SID_TP_APPLY_TO_SELECTED_SLIDES
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5976,7 +5729,6 @@ SfxVoidItem TaskPaneUseForNewPresentations SID_TP_USE_FOR_NEW_PRESENTATIONS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5999,7 +5751,6 @@ SfxVoidItem TaskPaneShowSmallPreview SID_TP_SHOW_SMALL_PREVIEW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6022,7 +5773,6 @@ SfxVoidItem TaskPaneShowLargePreview SID_TP_SHOW_LARGE_PREVIEW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6045,7 +5795,6 @@ SfxVoidItem TaskPaneEditMaster SID_TP_EDIT_MASTER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6068,7 +5817,6 @@ SfxVoidItem TaskPaneInsertPage SID_INSERTPAGE_LAYOUT_MENU
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -6265,7 +6013,6 @@ SfxVoidItem PhotoAlbumDialog SID_PHOTOALBUM
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -6287,7 +6034,6 @@ SfxVoidItem PresentationMinimizer SID_PRESENTATION_MINIMIZER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6309,7 +6055,6 @@ SfxVoidItem HideLastLevel SID_HIDE_LAST_LEVEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -6331,7 +6076,6 @@ SfxVoidItem ShowNextLevel SID_SHOW_NEXT_LEVEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -6353,7 +6097,6 @@ SfxVoidItem NextPage SID_GO_TO_NEXT_PAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -6375,7 +6118,6 @@ SfxVoidItem PreviousPage SID_GO_TO_PREVIOUS_PAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -6397,7 +6139,6 @@ SfxVoidItem FirstPage SID_GO_TO_FIRST_PAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -6419,7 +6160,6 @@ SfxVoidItem LastPage SID_GO_TO_LAST_PAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -6441,7 +6181,6 @@ SfxVoidItem MovePageUp SID_MOVE_PAGE_UP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6463,7 +6202,6 @@ SfxVoidItem MovePageDown SID_MOVE_PAGE_DOWN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6485,7 +6223,6 @@ SfxVoidItem MovePageFirst SID_MOVE_PAGE_FIRST
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6507,7 +6244,6 @@ SfxVoidItem MovePageLast SID_MOVE_PAGE_LAST
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6528,7 +6264,6 @@ SfxVoidItem UnicodeNotationToggle SID_UNICODE_NOTATION_TOGGLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
diff --git a/sfx2/sdi/sfx.sdi b/sfx2/sdi/sfx.sdi
index 9361358bb16d..8b878a8ca0c1 100644
--- a/sfx2/sdi/sfx.sdi
+++ b/sfx2/sdi/sfx.sdi
@@ -154,7 +154,6 @@ SfxVoidItem About SID_ABOUT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -177,7 +176,6 @@ SfxObjectItem Activate SID_ACTIVATE
Container = TRUE,
RecordAbsolute = TRUE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -200,7 +198,6 @@ SfxBoolItem ActiveHelp SID_HELPBALLOONS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -225,7 +222,6 @@ SfxUInt16Item ActualStyleFamily SID_STYLE_FAMILY
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -276,7 +272,6 @@ SfxVoidItem AddBookmark SID_CREATELINK
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -371,7 +366,6 @@ SfxStringItem Author SID_DOCINFO_AUTHOR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -395,7 +389,6 @@ SfxVoidItem AutoPilotMenu SID_AUTOPILOTMENU
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxStringItem
@@ -421,7 +414,6 @@ SfxVoidItem Backspace SID_BACKSPACE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -444,7 +436,6 @@ SfxVoidItem BasicBreak SID_BASICBREAK
Container = TRUE,
RecordAbsolute = FALSE,
NoRecord;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -470,7 +461,6 @@ SfxVoidItem BasicIDEAppear SID_BASICIDE_APPEAR
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -562,7 +552,6 @@ SfxVoidItem BasicStop SID_BASICSTOP
Container = TRUE,
RecordAbsolute = FALSE,
NoRecord;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -585,7 +574,6 @@ SfxBoolItem Beamer SID_BROWSER
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -685,7 +673,6 @@ SfxBoolItem BrowseView SID_BROWSER_MODE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -709,7 +696,6 @@ SfxTemplateItem CharStyle SID_STYLE_FAMILY1
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -757,7 +743,6 @@ SfxVoidItem ClearHistory SID_CLEARHISTORY
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -851,7 +836,6 @@ SfxBoolItem Closing SID_CLOSING
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -876,7 +860,6 @@ SfxStringItem Comments SID_DOCINFO_COMMENTS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -901,7 +884,6 @@ SfxInt32Item CompareDocuments SID_DOCUMENT_COMPARE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -970,7 +952,6 @@ SfxStringItem Context SID_CONTEXT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -995,7 +976,6 @@ SfxVoidItem Copy SID_COPY
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1066,7 +1046,6 @@ SfxVoidItem CursorEndOfScreen SID_CURSORENDOFSCREEN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -1089,7 +1068,6 @@ SfxVoidItem CursorTopOfScreen SID_CURSORTOPOFSCREEN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -1111,7 +1089,6 @@ SfxVoidItem Cut SID_CUT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1134,7 +1111,6 @@ SfxStringItem DefaultFilePath SID_DEFAULTFILEPATH
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -1159,7 +1135,6 @@ SfxStringItem DefaultFileName SID_DEFAULTFILENAME
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -1184,7 +1159,6 @@ SfxVoidItem Delete SID_DELETE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1230,7 +1204,6 @@ SfxUInt16Item DeleteStyle SID_STYLE_DELETE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -1253,7 +1226,6 @@ SfxVoidItem DesignerDialog SID_STYLE_DESIGNER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -1279,7 +1251,6 @@ SfxVoidItem DragHierarchy SID_STYLE_DRAGHIERARCHIE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -1348,7 +1319,6 @@ SfxUInt16Item EditStyle SID_STYLE_EDIT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -1371,7 +1341,6 @@ SfxUInt16Item HideStyle SID_STYLE_HIDE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -1394,7 +1363,6 @@ SfxUInt16Item ShowStyle SID_STYLE_SHOW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -1417,7 +1385,6 @@ SfxVoidItem ExecuteSearch FID_SEARCH_NOW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -1441,7 +1408,6 @@ SfxBoolItem ExtendedHelp SID_EXTENDEDHELP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -1466,7 +1432,6 @@ SfxStringItem FileName SID_FILE_NAME
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -1491,7 +1456,6 @@ SfxVoidItem FocusUrlBox SID_FOCUSURLBOX
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxStringItem
@@ -1517,7 +1481,6 @@ SfxVoidItem FormatMenu SID_FORMATMENU
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -1540,7 +1503,6 @@ SfxTemplateItem FrameStyle SID_STYLE_FAMILY3
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -1564,7 +1526,6 @@ SfxStringItem FullName SID_DOCFULLNAME
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -1820,7 +1781,6 @@ SfxObjectItem GetFrameWindow SID_FILLFRAME
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -1843,7 +1803,6 @@ SfxVoidItem GoDown SID_CURSORDOWN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1866,7 +1825,6 @@ SfxVoidItem GoDownBlock SID_CURSORPAGEDOWN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1889,7 +1847,6 @@ SfxVoidItem GoDownBlockSel SID_CURSORPAGEDOWN_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1912,7 +1869,6 @@ SfxVoidItem GoDownSel SID_CURSORDOWN_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1935,7 +1891,6 @@ SfxVoidItem GoLeft SID_CURSORLEFT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1957,7 +1912,6 @@ SfxVoidItem GoLeftBlockSel SID_CURSORPAGELEFT_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1980,7 +1934,6 @@ SfxVoidItem GoLeftSel SID_CURSORLEFT_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2003,7 +1956,6 @@ SfxVoidItem GoRight SID_CURSORRIGHT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2026,7 +1978,6 @@ SfxVoidItem GoRightSel SID_CURSORRIGHT_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2049,7 +2000,6 @@ SfxVoidItem GoToEndOfData SID_CURSORENDOFFILE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2072,7 +2022,6 @@ SfxVoidItem GoToEndOfDataSel SID_CURSORENDOFFILE_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2095,7 +2044,6 @@ SfxVoidItem GoToEndOfRow SID_CURSOREND
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2118,7 +2066,6 @@ SfxVoidItem GoToEndOfRowSel SID_CURSOREND_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2141,7 +2088,6 @@ SfxVoidItem GoToStart SID_CURSORTOPOFFILE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2164,7 +2110,6 @@ SfxVoidItem GoToStartOfRow SID_CURSORHOME
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2187,7 +2132,6 @@ SfxVoidItem GoToStartOfRowSel SID_CURSORHOME_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2210,7 +2154,6 @@ SfxVoidItem GoToStartSel SID_CURSORTOPOFFILE_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2233,7 +2176,6 @@ SfxVoidItem GoUp SID_CURSORUP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2256,7 +2198,6 @@ SfxVoidItem GoUpBlock SID_CURSORPAGEUP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2279,7 +2220,6 @@ SfxVoidItem GoUpBlockSel SID_CURSORPAGEUP_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2302,7 +2242,6 @@ SfxVoidItem GoUpSel SID_CURSORUP_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2325,7 +2264,6 @@ SfxVoidItem HelpIndex SID_HELPINDEX
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2348,7 +2286,6 @@ SfxVoidItem HelpMenu SID_HELPMENU
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -2371,7 +2308,6 @@ SfxVoidItem HelpOnHelp SID_HELPONHELP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2394,7 +2330,6 @@ SfxBoolItem HelpTip SID_HELPTIPS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2442,7 +2377,6 @@ SfxBoolItem HyperlinkDialog SID_HYPERLINK_DIALOG
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2519,7 +2453,6 @@ SfxBoolItem IsLoading SID_DOC_LOADING
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -2544,7 +2477,6 @@ SfxBoolItem IsLoadingImages SID_IMG_LOADING
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -2570,7 +2502,6 @@ SfxBoolItem IsPrinting SID_PRINTOUT
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -2595,7 +2526,6 @@ SfxVoidItem JumpToMark SID_JUMPTOMARK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -2618,7 +2548,6 @@ SfxStringItem Keywords SID_DOCINFO_KEYWORDS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2643,7 +2572,6 @@ SfxStringItem LibLoaded SID_BASICIDE_LIBLOADED
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxStringItem
@@ -2669,7 +2597,6 @@ SfxStringItem LibRemoved SID_BASICIDE_LIBREMOVED
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxStringItem
@@ -2695,7 +2622,6 @@ SfxStringItem LibSelect SID_BASICIDE_LIBSELECTED
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxStringItem
@@ -2721,7 +2647,6 @@ SfxStringItem LibSelector SID_BASICIDE_LIBSELECTOR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2933,7 +2858,6 @@ SfxVoidItem ScriptOrganizer SID_SCRIPTORGANIZER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxScriptOrganizerItem
@@ -2959,7 +2883,6 @@ SfxVoidItem MacroOrganizer SID_MACROORGANIZER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxScriptOrganizerItem
@@ -2985,7 +2908,6 @@ SfxBoolItem ShowLines SID_SHOWLINES
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3008,7 +2930,6 @@ SfxVoidItem RunMacro SID_RUNMACRO
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3030,7 +2951,6 @@ SfxVoidItem GotoLine SID_GOTOLINE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3053,7 +2973,6 @@ SfxVoidItem MacroDialog SID_BASICCHOOSER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3097,7 +3016,6 @@ SfxInt32Item MergeDocuments SID_DOCUMENT_MERGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3120,7 +3038,6 @@ SfxUInt16Item MetricUnit SID_ATTR_METRIC
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3144,7 +3061,6 @@ SfxBoolItem Modified SID_MODIFIED
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3169,7 +3085,6 @@ SfxBoolItem ModifiedStatus SID_DOC_MODIFIED
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -3239,7 +3154,6 @@ SfxBoolItem Navigator SID_NAVIGATOR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3262,7 +3176,6 @@ SfxBoolItem InfoBar SID_INFOBAR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3310,7 +3223,6 @@ SfxVoidItem RestoreEditingView SID_RESTORE_EDITING_VIEW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3380,7 +3292,6 @@ SfxUInt16Item NewStyle SID_STYLE_NEW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -3403,7 +3314,6 @@ SfxVoidItem NewWindow SID_NEWWINDOW
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3564,7 +3474,6 @@ SfxStringItem DocInfoTitle SID_DOCINFO_TITLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -3706,7 +3615,6 @@ SfxVoidItem Options SID_OPTIONS
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -3751,7 +3659,6 @@ SfxTemplateItem PageStyle SID_STYLE_FAMILY4
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -3776,7 +3683,6 @@ SfxTemplateItem ParaStyle SID_STYLE_FAMILY2
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -3801,7 +3707,6 @@ SfxBoolItem PartWindow SID_PARTWIN
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -3826,7 +3731,6 @@ SfxVoidItem Paste SID_PASTE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3849,7 +3753,6 @@ SfxVoidItem ClipboardFormatItems SID_CLIPBOARD_FORMAT_ITEMS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SvxClipboardFormatItem
@@ -3897,7 +3800,6 @@ SfxVoidItem PasteOnly SID_PASTE_ONLY
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3919,7 +3821,6 @@ SfxVoidItem PasteOnlyText SID_PASTE_ONLY_TEXT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3941,7 +3842,6 @@ SfxVoidItem PasteOnlyFormula SID_PASTE_ONLY_FORMULA
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3963,7 +3863,6 @@ SfxVoidItem PasteOnlyValue SID_PASTE_ONLY_VALUE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3986,7 +3885,6 @@ SfxStringItem DocPath SID_DOCPATH
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -4011,7 +3909,6 @@ SfxVoidItem PickList SID_PICKLIST
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -4034,7 +3931,6 @@ SfxBoolItem PlugInsActive SID_PLUGINS_ACTIVE
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4178,7 +4074,6 @@ SfxVoidItem SetDocumentProperties SID_DOCINFO
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4227,7 +4122,6 @@ SfxBoolItem ReadOnly SID_DOC_READONLY
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -4252,7 +4146,6 @@ SfxBoolItem MacroRecorder SID_RECORDMACRO
Container = TRUE,
RecordAbsolute = FALSE,
NoRecord;
- Synchron;
Readonly = FALSE,
@@ -4277,7 +4170,6 @@ SfxVoidItem StopRecording SID_STOP_RECORDING
Container = TRUE,
RecordAbsolute = FALSE,
NoRecord;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4300,7 +4192,6 @@ SfxBoolItem MacroRecordingFloat SID_RECORDING_FLOATWINDOW
Container = TRUE,
RecordAbsolute = FALSE,
NoRecord;
- Synchron;
Readonly = FALSE,
@@ -4325,7 +4216,6 @@ SfxVoidItem Redo SID_REDO
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxStringItem
@@ -4422,7 +4312,6 @@ SfxVoidItem Repaint SID_REPAINT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4446,7 +4335,6 @@ SfxStringItem RepeatAction SID_REPEAT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -4471,7 +4359,6 @@ SfxBoolItem RubyDialog SID_RUBY_DIALOG
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4545,7 +4432,6 @@ SfxBoolItem SaveAll SID_SAVEDOCS
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4568,7 +4454,6 @@ SfxBoolItem SaveAs SID_SAVEASDOC
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxStringItem
@@ -4593,7 +4478,6 @@ SfxBoolItem SaveAsRemote SID_SAVEASREMOTE
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxStringItem
@@ -4619,7 +4503,6 @@ SfxBoolItem SaveAsTemplate SID_DOCTEMPLATE
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4643,7 +4526,6 @@ SfxBoolItem SaveACopy SID_SAVEACOPY
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4757,7 +4639,6 @@ SfxBoolItem Saved SID_DOC_SAVED
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -4782,7 +4663,6 @@ SfxVoidItem SbxDeleted SID_BASICIDE_SBXDELETED
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -4805,7 +4685,6 @@ SfxVoidItem SbxInserted SID_BASICIDE_SBXINSERTED
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -4828,7 +4707,6 @@ SfxVoidItem SbxRenamed SID_BASICIDE_SBXRENAMED
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -4851,7 +4729,6 @@ SfxBoolItem ScrollBodyPageDown SID_MAIL_SCROLLBODY_PAGEDOWN
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -4873,7 +4750,6 @@ SfxBoolItem SearchDialog SID_SEARCH_DLG
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
/* config: */
@@ -4897,7 +4773,6 @@ SfxUInt16Item SearchOptions SID_SEARCH_OPTIONS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4922,7 +4797,6 @@ SvxSearchItem SearchProperties SID_SEARCH_ITEM
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4947,7 +4821,6 @@ SfxVoidItem SelectAll SID_SELECTALL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5168,7 +5041,6 @@ SfxBoolItem ShowBrowser SID_SHOW_BROWSER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5193,7 +5065,6 @@ SfxBoolItem ShowPopups SID_SHOWPOPUPS
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5241,7 +5112,6 @@ SfxBoolItem SourceView SID_SOURCEVIEW
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5266,7 +5136,6 @@ SfxBoolItem StatusBarVisible SID_TOGGLESTATUSBAR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5291,7 +5160,6 @@ SfxStringItem StatusGetDate SID_BASICIDE_STAT_DATE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5316,7 +5184,6 @@ SfxStringItem StatusGetPosition SID_BASICIDE_STAT_POS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5341,7 +5208,6 @@ SfxStringItem StatusGetTitle SID_BASICIDE_STAT_TITLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5366,7 +5232,6 @@ SfxVoidItem StoreAllModuleSources SID_BASICIDE_STOREALLMODULESOURCES
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -5389,7 +5254,6 @@ SfxVoidItem StoreModuleSource SID_BASICIDE_STOREMODULESOURCE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -5410,7 +5274,6 @@ SfxVoidItem StyleEndPreview SID_STYLE_END_PREVIEW
Container = FALSE,
RecordAbsolute = FALSE,
NoRecord;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -5432,7 +5295,6 @@ SfxVoidItem StylePreview SID_STYLE_PREVIEW
Container = FALSE,
RecordAbsolute = FALSE,
NoRecord;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -5456,7 +5318,6 @@ SfxTemplateItem StyleApplyState SID_STYLE_APPLY
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -5481,7 +5342,6 @@ SfxVoidItem StyleNewByExample SID_STYLE_NEW_BY_EXAMPLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5504,7 +5364,6 @@ SfxVoidItem StyleUpdateByExample SID_STYLE_UPDATE_BY_EXAMPLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5527,7 +5386,6 @@ SfxBoolItem StyleWatercanMode SID_STYLE_WATERCAN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5576,7 +5434,6 @@ SfxTemplateItem ListStyle SID_STYLE_FAMILY5
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -5601,7 +5458,6 @@ SfxBoolItem TipsDialog SID_TIPWINDOW
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5626,7 +5482,6 @@ SfxStringItem Title SID_DOCTITLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -5676,7 +5531,6 @@ SfxVoidItem BasicIDEShowWindow SID_BASICIDE_SHOWWINDOW
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -5699,7 +5553,6 @@ SfxVoidItem Undo SID_UNDO
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxStringItem
@@ -5724,7 +5577,6 @@ SfxVoidItem FormatPaintbrush SID_FORMATPAINTBRUSH ( SfxBoolItem PersistentCopy S
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -5750,7 +5602,6 @@ SfxUInt16Item UndoCount SID_ATTR_UNDO_COUNT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5775,7 +5626,6 @@ SfxVoidItem UpdateAllModuleSources SID_BASICIDE_UPDATEALLMODULESOURCES
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -5798,7 +5648,6 @@ SfxVoidItem UpdateModuleSource SID_BASICIDE_UPDATEMODULESOURCE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -5932,7 +5781,6 @@ SfxVoidItem VersionVisible SID_VERSION_VISIBLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -5958,7 +5806,6 @@ SfxBoolItem ViewDataSourceBrowser SID_VIEW_DATA_SOURCE_BROWSER
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5982,7 +5829,6 @@ SfxVoidItem WindowList SID_MDIWINDOWLIST
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -6005,7 +5851,6 @@ SfxVoidItem ZoomMinus SID_ZOOM_IN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6028,7 +5873,6 @@ SfxVoidItem Zooming SID_ZOOM
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -6051,7 +5895,6 @@ SfxVoidItem ZoomNext SID_ZOOM_NEXT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6074,7 +5917,6 @@ SfxVoidItem ZoomPlus SID_ZOOM_OUT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6097,7 +5939,6 @@ SfxVoidItem ZoomPrevious SID_ZOOM_PREV
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6120,7 +5961,6 @@ SfxVoidItem ZoomToolBox SID_ZOOM_TOOLBOX
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6145,7 +5985,6 @@ SfxBoolItem ExportTo SID_EXPORTDOC
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6168,7 +6007,6 @@ SfxBoolItem ExportToPDF SID_EXPORTDOCASPDF
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6190,7 +6028,6 @@ SfxBoolItem ExportDirectToPDF SID_DIRECTEXPORTDOCASPDF
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6213,7 +6050,6 @@ SfxImageItem ImageOrientation SID_IMAGE_ORIENTATION
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -6238,7 +6074,6 @@ SfxBoolItem SaveVersionOnClose SID_SAVE_VERSION_ON_CLOSE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6262,7 +6097,6 @@ SfxVoidItem Addons SID_ADDONS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6285,7 +6119,6 @@ SfxBoolItem ShowImeStatusWindow SID_SHOW_IME_STATUS_WINDOW
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6310,7 +6143,6 @@ SfxVoidItem UpdateConfiguration SID_UPDATE_CONFIG
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -6333,7 +6165,6 @@ SfxVoidItem SendFeedback SID_SEND_FEEDBACK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6356,7 +6187,6 @@ SfxVoidItem ShowLicense SID_SHOW_LICENSE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6379,7 +6209,6 @@ SfxVoidItem ShowCredits SID_SHOW_CREDITS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6402,7 +6231,6 @@ SfxVoidItem HelpTutorials SID_HELP_TUTORIALS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -6423,7 +6251,6 @@ SfxStringItem FormatMenuState SID_FORMATMENUSTATE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -6446,7 +6273,6 @@ SfxVoidItem InternetDialog SID_INET_DLG
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6469,7 +6295,6 @@ SfxBoolItem CheckPLZ SID_OFFICE_CHECK_PLZ
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -6492,7 +6317,6 @@ SfxVoidItem AutoPilotAddressDataSource SID_ADDRESS_DATA_SOURCE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6584,7 +6408,6 @@ SfxVoidItem AutoPilotPresentations SID_SD_AUTOPILOT
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -6607,7 +6430,6 @@ SfxVoidItem NewPresentation SID_NEWSD
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -6630,7 +6452,6 @@ SfxVoidItem BibliographyComponent SID_COMP_BIBLIOGRAPHY
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6653,7 +6474,6 @@ SfxBoolItem CheckPLZ SID_OFFICE_CHECK_PLZ
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -6675,7 +6495,6 @@ SfxVoidItem AutoCorrectDlg SID_AUTO_CORRECT_DLG
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6697,7 +6516,6 @@ SfxVoidItem OptionsTreeDialog SID_OPTIONS_TREEDIALOG
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6719,7 +6537,6 @@ SfxBoolItem TerminateInplaceActivation SID_TERMINATE_INPLACEACTIVATION
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -6740,7 +6557,6 @@ SfxVoidItem RecentFileList SID_RECENTFILELIST
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -6763,7 +6579,6 @@ SfxVoidItem AvailableToolbars SID_AVAILABLE_TOOLBARS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -6785,7 +6600,6 @@ SfxVoidItem AVMediaPlayer SID_AVMEDIA_PLAYER
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6807,7 +6621,6 @@ SfxStringItem InsertAVMedia SID_INSERT_AVMEDIA
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6829,7 +6642,6 @@ SfxVoidItem MoreDictionaries SID_MORE_DICTIONARIES
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -6874,7 +6686,6 @@ SfxBoolItem DockingWindow0 SID_DOCKWIN_0
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6899,7 +6710,6 @@ SfxBoolItem DockingWindow1 SID_DOCKWIN_1
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6924,7 +6734,6 @@ SfxBoolItem DockingWindow2 SID_DOCKWIN_2
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6949,7 +6758,6 @@ SfxBoolItem DockingWindow3 SID_DOCKWIN_3
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6974,7 +6782,6 @@ SfxBoolItem DockingWindow4 SID_DOCKWIN_4
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6999,7 +6806,6 @@ SfxBoolItem DockingWindow5 SID_DOCKWIN_5
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7024,7 +6830,6 @@ SfxBoolItem DockingWindow6 SID_DOCKWIN_6
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7049,7 +6854,6 @@ SfxBoolItem DockingWindow7 SID_DOCKWIN_7
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7074,7 +6878,6 @@ SfxBoolItem DockingWindow8 SID_DOCKWIN_8
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7099,7 +6902,6 @@ SfxBoolItem DockingWindow9 SID_DOCKWIN_9
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7148,7 +6950,6 @@ SfxInt16Item ThesaurusFromContext SID_THES
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -7195,7 +6996,6 @@ SfxStringItem Insert3DModel SID_INSERT_3DMODEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
diff --git a/starmath/sdi/smath.sdi b/starmath/sdi/smath.sdi
index 6b057680b5a8..4b9e6c8c65ee 100644
--- a/starmath/sdi/smath.sdi
+++ b/starmath/sdi/smath.sdi
@@ -28,7 +28,6 @@ SfxVoidItem ChangeAlignment SID_ALIGN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -51,7 +50,6 @@ SfxVoidItem ChangeDistance SID_DISTANCE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -74,7 +72,6 @@ SfxVoidItem ChangeFont SID_FONT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -97,7 +94,6 @@ SfxVoidItem ChangeFontSize SID_FONTSIZE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -120,7 +116,6 @@ SfxVoidItem CommandWindow SID_CMDBOXWINDOW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -143,7 +138,6 @@ SfxVoidItem ElementsDockingWindow SID_ELEMENTSDOCKINGWINDOW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -166,7 +160,6 @@ SfxVoidItem Preferences SID_PREFERENCES
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -189,7 +182,6 @@ SfxStringItem ConfigName SID_TEXT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -214,7 +206,6 @@ SfxVoidItem CopyObject SID_COPYOBJECT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -237,7 +228,6 @@ SfxVoidItem Draw SID_DRAW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -260,7 +250,6 @@ SfxBoolItem FormelCursor SID_FORMULACURSOR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -283,7 +272,6 @@ SfxInt16Item Graphic SID_GAPHIC_SM
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -398,7 +386,6 @@ SfxBoolItem ImportMathMLClipboard SID_IMPORT_MATHML_CLIPBOARD
Container = FALSE,
RecordAbsolute = FALSE, /*obsolete */
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -443,7 +430,6 @@ SfxStringItem ModifyStatus SID_MODIFYSTATUS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -468,7 +454,6 @@ SfxVoidItem NextError SID_NEXTERR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -491,7 +476,6 @@ SfxVoidItem NextMark SID_NEXTMARK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -514,7 +498,6 @@ SfxVoidItem PasteObject SID_PASTEOBJECT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -537,7 +520,6 @@ SfxVoidItem PrevError SID_PREVERR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -560,7 +542,6 @@ SfxVoidItem PrevMark SID_PREVMARK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -583,7 +564,6 @@ SfxBoolItem RedrawAutomatic SID_AUTO_REDRAW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -608,7 +588,6 @@ SfxVoidItem SaveSymbols SID_SAVESYMBOLS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -631,7 +610,6 @@ SfxVoidItem SetPaperSize SID_GETEDITTEXT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -654,7 +632,6 @@ SfxVoidItem SymbolCatalogue SID_SYMBOLS_CATALOGUE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -677,7 +654,6 @@ SfxVoidItem Symbols SID_SYMBOLS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -700,7 +676,6 @@ SfxBoolItem Textmode SID_TEXTMODE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -725,7 +700,6 @@ SfxStringItem TextStatus SID_TEXTSTATUS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -750,7 +724,6 @@ SfxVoidItem UnicodeNotationToggle SID_UNICODE_NOTATION_TOGGLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -773,7 +746,6 @@ SfxVoidItem ToolBoxWindow SID_TOOLBOXWINDOW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -796,7 +768,6 @@ SfxBoolItem ToolBox SID_TOOLBOX
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -821,7 +792,6 @@ SfxVoidItem ZoomIn SID_ZOOMIN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -844,7 +814,6 @@ SfxVoidItem ZoomOut SID_ZOOMOUT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
diff --git a/svx/sdi/svx.sdi b/svx/sdi/svx.sdi
index e0140f10f08d..0dfec4a8015d 100644
--- a/svx/sdi/svx.sdi
+++ b/svx/sdi/svx.sdi
@@ -27,7 +27,6 @@ SfxBoolItem AbsoluteRecord SID_FM_RECORD_ABSOLUTE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxInt32Item
@@ -78,7 +77,6 @@ SfxVoidItem AddTable SID_FM_ADDTABLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -101,7 +99,6 @@ SfxVoidItem AlignCenter SID_OBJECT_ALIGN_CENTER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -124,7 +121,6 @@ SfxVoidItem AlignDown SID_OBJECT_ALIGN_DOWN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -147,7 +143,6 @@ SfxVoidItem ObjectAlignLeft SID_OBJECT_ALIGN_LEFT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -170,7 +165,6 @@ SvxAdjustItem Alignment SID_ATTR_PARA_ADJUST
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -195,7 +189,6 @@ SfxVoidItem AlignMiddle SID_OBJECT_ALIGN_MIDDLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -218,7 +211,6 @@ SfxVoidItem ObjectAlignRight SID_OBJECT_ALIGN_RIGHT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -241,7 +233,6 @@ SfxVoidItem AlignUp SID_OBJECT_ALIGN_UP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -264,7 +255,6 @@ SfxVoidItem Arc SID_DRAW_ARC
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -290,7 +280,6 @@ SfxBoolItem Assign3D SID_3D_ASSIGN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -340,7 +329,6 @@ SfxVoidItem AutoFilter SID_FM_AUTOFILTER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -387,7 +375,6 @@ SfxVoidItem BackgroundImage SID_GALLERY_BG_BRUSH
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxStringItem
@@ -443,7 +430,6 @@ SfxVoidItem TableStyleSettings SID_TABLE_STYLE_SETTINGS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -487,7 +473,6 @@ SvxColorItem BackgroundColor SID_BACKGROUND_COLOR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -512,7 +497,6 @@ SvxBrushItem BackgroundPattern SID_ATTR_BRUSH
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -537,7 +521,6 @@ SvxBrushItem BackgroundPatternController SID_BACKGROUND_PATTERN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -562,7 +545,6 @@ SfxBoolItem Bezier_Unfilled SID_DRAW_BEZIER_NOFILL
Container = FALSE,
RecordAbsolute = FALSE,
RecordManual;
- Synchron;
Readonly = FALSE,
@@ -587,7 +569,6 @@ SfxBoolItem BezierAppend SID_BEZIER_APPEND
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -612,7 +593,6 @@ SfxStringItem BezierClose SID_BEZIER_CLOSE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -637,7 +617,6 @@ SfxStringItem BezierConvert SID_BEZIER_CONVERT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -662,7 +641,6 @@ SfxBoolItem BezierCutLine SID_BEZIER_CUTLINE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -687,7 +665,6 @@ SfxBoolItem BezierDelete SID_BEZIER_DELETE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -712,7 +689,6 @@ SfxBoolItem BezierEdge SID_BEZIER_EDGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -737,7 +713,6 @@ SfxBoolItem BezierEliminatePoints SID_BEZIER_ELIMINATE_POINTS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -762,7 +737,6 @@ SfxBoolItem BezierFill SID_DRAW_BEZIER_FILL
Container = FALSE,
RecordAbsolute = FALSE,
RecordManual;
- Synchron;
Readonly = FALSE,
@@ -787,7 +761,6 @@ SfxBoolItem BezierInsert SID_BEZIER_INSERT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -812,7 +785,6 @@ SfxBoolItem BezierMove SID_BEZIER_MOVE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -837,7 +809,6 @@ SfxBoolItem BezierSmooth SID_BEZIER_SMOOTH
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -862,7 +833,6 @@ SfxBoolItem BezierSymmetric SID_BEZIER_SYMMTR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -887,7 +857,6 @@ SfxVoidItem BezierTo SID_BEZIERTO
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -910,7 +879,6 @@ SfxBoolItem BmpMask SID_BMPMASK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -935,7 +903,6 @@ SfxBoolItem BmpMaskExec SID_BMPMASK_EXEC
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -960,7 +927,6 @@ SfxBoolItem BmpMaskPipette SID_BMPMASK_PIPETTE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -985,7 +951,6 @@ SvxWeightItem Bold SID_ATTR_CHAR_WEIGHT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -1010,7 +975,6 @@ SvxWeightItem BoldLatin SID_ATTR_CHAR_LATIN_WEIGHT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -1035,7 +999,6 @@ SvxWeightItem BoldCJK SID_ATTR_CHAR_CJK_WEIGHT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -1060,7 +1023,6 @@ SvxWeightItem BoldCTL SID_ATTR_CHAR_CTL_WEIGHT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -1085,7 +1047,6 @@ SfxObjectItem Border SID_BORDER_OBJECT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -1110,7 +1071,6 @@ SvxBoxInfoItem BorderInner SID_ATTR_BORDER_INNER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -1135,7 +1095,6 @@ SvxBoxItem BorderOuter SID_ATTR_BORDER_OUTER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -1160,7 +1119,6 @@ SfxVoidItem SetBorderStyle SID_ATTR_BORDER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SvxBoxItem
@@ -1186,7 +1144,6 @@ SfxVoidItem BringToFront SID_FRAME_TO_TOP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1209,7 +1166,6 @@ SfxBoolItem DrawCaption SID_DRAW_CAPTION
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -1234,7 +1190,6 @@ SvxCaseMapItem CaseMap SID_ATTR_CHAR_CASEMAP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -1259,7 +1214,6 @@ SfxBoolItem CenterPara SID_ATTR_PARA_ADJUST_CENTER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
ImageRotation = TRUE;
Readonly = FALSE,
@@ -1515,7 +1469,6 @@ SfxBoolItem ChangeControlType SID_FM_CHANGECONTROLTYPE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -1540,7 +1493,6 @@ SvxFontItem CharFontName SID_ATTR_CHAR_FONT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -1564,7 +1516,6 @@ SvxFontItem CharPreviewFontName SID_ATTR_CHAR_PREVIEW_FONT
Container = FALSE,
RecordAbsolute = FALSE,
NoRecord;
- Synchron;
Readonly = FALSE,
@@ -1588,7 +1539,6 @@ SvxFontItem CharEndPreviewFontName SID_ATTR_CHAR_ENDPREVIEW_FONT
Container = FALSE,
RecordAbsolute = FALSE,
NoRecord;
- Synchron;
Readonly = FALSE,
@@ -1613,7 +1563,6 @@ SvxFontItem CharFontNameLatin SID_ATTR_CHAR_LATIN_FONT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -1638,7 +1587,6 @@ SvxFontItem CharFontNameCJK SID_ATTR_CHAR_CJK_FONT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -1663,7 +1611,6 @@ SvxFontItem CharFontNameCTL SID_ATTR_CHAR_CTL_FONT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -1688,7 +1635,6 @@ SfxBoolItem Checkbox SID_INSERT_CHECKBOX
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -1713,7 +1659,6 @@ SfxBoolItem CheckBox SID_FM_CHECKBOX
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -1738,7 +1683,6 @@ SvxChooseControlItem ChooseControls SID_CHOOSE_CONTROLS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -1765,7 +1709,6 @@ SfxBoolItem ChoosePolygon SID_CHOOSE_POLYGON
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -1790,7 +1733,6 @@ SfxVoidItem Circle SID_DRAW_CIRCLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordManual;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -1816,7 +1758,6 @@ SfxVoidItem Circle_Unfilled SID_DRAW_CIRCLE_NOFILL
Container = FALSE,
RecordAbsolute = FALSE,
RecordManual;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -1842,7 +1783,6 @@ SfxVoidItem CircleArc SID_DRAW_CIRCLEARC
Container = FALSE,
RecordAbsolute = FALSE,
RecordManual;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -1868,7 +1808,6 @@ SfxVoidItem CircleCut SID_DRAW_CIRCLECUT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -1894,7 +1833,6 @@ SfxVoidItem CircleCut_Unfilled SID_DRAW_CIRCLECUT_NOFILL
Container = FALSE,
RecordAbsolute = FALSE,
RecordManual;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -1920,7 +1858,6 @@ SfxVoidItem CirclePie SID_DRAW_CIRCLEPIE
Container = FALSE,
RecordAbsolute = FALSE,
RecordManual;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -1946,7 +1883,6 @@ SfxVoidItem CirclePie_Unfilled SID_DRAW_CIRCLEPIE_NOFILL
Container = FALSE,
RecordAbsolute = FALSE,
RecordManual;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -1972,7 +1908,6 @@ SfxVoidItem ClearOutline SID_OUTLINE_DELETEALL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1995,7 +1930,6 @@ SvxColorItem Color SID_ATTR_CHAR_COLOR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2019,7 +1953,6 @@ SvxBackgroundColorItem CharBackColor SID_ATTR_CHAR_BACK_COLOR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2043,7 +1976,6 @@ SfxBoolItem ColorControl SID_COLOR_CONTROL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2068,7 +2000,6 @@ SfxBoolItem ComboBox SID_FM_COMBOBOX
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2092,7 +2023,6 @@ SfxBoolItem NavigationBar SID_FM_NAVIGATIONBAR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2117,7 +2047,6 @@ SfxBoolItem Combobox SID_INSERT_COMBOBOX
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -2142,7 +2071,6 @@ SfxUInt16Item Config SID_FM_CONFIG
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2169,7 +2097,6 @@ SfxBoolItem MoreControls SID_FM_MORE_CONTROLS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2196,7 +2123,6 @@ SfxBoolItem FormDesignTools SID_FM_FORM_DESIGN_TOOLS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2223,7 +2149,6 @@ SfxBoolItem ContourDialog SID_CONTOUR_DLG
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2248,7 +2173,6 @@ SfxBoolItem ContourExecute SID_CONTOUR_EXEC
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2273,7 +2197,6 @@ SfxBoolItem ControlProperties SID_FM_CTL_PROPERTIES
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2298,7 +2221,6 @@ SfxBoolItem ConvertToButton SID_FM_CONVERTTO_BUTTON
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -2323,7 +2245,6 @@ SfxBoolItem ConvertToCheckBox SID_FM_CONVERTTO_CHECKBOX
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -2348,7 +2269,6 @@ SfxBoolItem ConvertToCombo SID_FM_CONVERTTO_COMBOBOX
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -2373,7 +2293,6 @@ SfxBoolItem ConvertToCurrency SID_FM_CONVERTTO_CURRENCY
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -2398,7 +2317,6 @@ SfxBoolItem ConvertToDate SID_FM_CONVERTTO_DATE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -2423,7 +2341,6 @@ SfxBoolItem ConvertToEdit SID_FM_CONVERTTO_EDIT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -2448,7 +2365,6 @@ SfxBoolItem ConvertToFileControl SID_FM_CONVERTTO_FILECONTROL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -2473,7 +2389,6 @@ SfxBoolItem ConvertToFixed SID_FM_CONVERTTO_FIXEDTEXT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -2498,7 +2413,6 @@ SfxBoolItem ConvertToFormatted SID_FM_CONVERTTO_FORMATTED
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -2523,7 +2437,6 @@ SfxBoolItem ConvertToScrollBar SID_FM_CONVERTTO_SCROLLBAR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -2548,7 +2461,6 @@ SfxBoolItem ConvertToSpinButton SID_FM_CONVERTTO_SPINBUTTON
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -2573,7 +2485,6 @@ SfxBoolItem ConvertToGroup SID_FM_CONVERTTO_GROUPBOX
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -2598,7 +2509,6 @@ SfxBoolItem ConvertToImageBtn SID_FM_CONVERTTO_IMAGEBUTTON
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -2623,7 +2533,6 @@ SfxBoolItem ConvertToImageControl SID_FM_CONVERTTO_IMAGECONTROL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -2648,7 +2557,6 @@ SfxBoolItem ConvertToList SID_FM_CONVERTTO_LISTBOX
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -2673,7 +2581,6 @@ SfxBoolItem ConvertToNumeric SID_FM_CONVERTTO_NUMERIC
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -2698,7 +2605,6 @@ SfxBoolItem ConvertToPattern SID_FM_CONVERTTO_PATTERN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -2723,7 +2629,6 @@ SfxBoolItem ConvertToRadio SID_FM_CONVERTTO_RADIOBUTTON
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -2748,7 +2653,6 @@ SfxBoolItem ConvertToTime SID_FM_CONVERTTO_TIME
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -2773,7 +2677,6 @@ SfxBoolItem ConvertToNavigationBar SID_FM_CONVERTTO_NAVIGATIONBAR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -2798,7 +2701,6 @@ SfxVoidItem CountAll SID_FM_COUNTALL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -2821,7 +2723,6 @@ SfxBoolItem CreateControl SID_FM_CREATE_CONTROL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -2847,7 +2748,6 @@ SfxBoolItem InsertCurrencyField SID_INSERT_CURRENCYFIELD
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2872,7 +2772,6 @@ SfxBoolItem CurrencyField SID_FM_CURRENCYFIELD
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2897,7 +2796,6 @@ SfxVoidItem Dash SID_DASH
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -2920,7 +2818,6 @@ SfxBoolItem AddDateField SID_INSERT_DATEFIELD
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2945,7 +2842,6 @@ SfxBoolItem DateField SID_FM_DATEFIELD
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2970,7 +2866,6 @@ SfxVoidItem DefaultBullet FN_NUM_BULLET_ON
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
ImageRotation = TRUE;
ImageReflection = TRUE;
@@ -2998,7 +2893,6 @@ SfxBoolItem DeleteRecord SID_FM_RECORD_DELETE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -3072,7 +2966,6 @@ SfxBoolItem DrawSelect SID_DRAW_SELECT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3097,7 +2990,6 @@ SfxBoolItem InsertDraw SID_INSERT_DRAW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3122,7 +3014,6 @@ SfxBoolItem DSBrowserExplorer SID_DSBROWSER_EXPLORER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3147,7 +3038,6 @@ SfxBoolItem Edit SID_FM_EDIT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3172,7 +3062,6 @@ SfxBoolItem InsertEdit SID_INSERT_EDIT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -3197,7 +3086,6 @@ SfxVoidItem Ellipse SID_DRAW_ELLIPSE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -3223,7 +3111,6 @@ SfxVoidItem Ellipse_Unfilled SID_DRAW_ELLIPSE_NOFILL
Container = FALSE,
RecordAbsolute = FALSE,
RecordManual;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -3249,7 +3136,6 @@ SfxVoidItem EllipseCut SID_DRAW_ELLIPSECUT
Container = FALSE,
RecordAbsolute = FALSE,
RecordManual;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -3275,7 +3161,6 @@ SfxVoidItem EllipseCut_Unfilled SID_DRAW_ELLIPSECUT_NOFILL
Container = FALSE,
RecordAbsolute = FALSE,
RecordManual;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -3301,7 +3186,6 @@ SfxVoidItem EnterGroup SID_ENTER_GROUP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3324,7 +3208,6 @@ SvxEscapementItem Escapement SID_ATTR_CHAR_ESCAPEMENT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3349,7 +3232,6 @@ SfxObjectItem FieldController SID_FM_FIELDS_CONTROL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -3374,7 +3256,6 @@ SfxBoolItem FileControl SID_FM_FILECONTROL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3399,7 +3280,6 @@ SfxBoolItem InsertFileControl SID_INSERT_FILECONTROL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3424,7 +3304,6 @@ SfxBoolItem InsertTreeControl SID_INSERT_TREECONTROL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3450,7 +3329,6 @@ XFillBitmapItem FillBitmap SID_ATTR_FILL_BITMAP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3475,7 +3353,6 @@ XFillColorItem FillColor SID_ATTR_FILL_COLOR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3500,7 +3377,6 @@ XFillGradientItem FillGradient SID_ATTR_FILL_GRADIENT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3525,7 +3401,6 @@ XFillHatchItem FillHatch SID_ATTR_FILL_HATCH
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3550,7 +3425,6 @@ XFillStyleItem FillStyle SID_ATTR_FILL_STYLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3575,7 +3449,6 @@ SfxVoidItem FilterCrit SID_FM_FILTERCRIT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -3598,7 +3471,6 @@ SfxBoolItem FirstRecord SID_FM_RECORD_FIRST
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -3624,7 +3496,6 @@ SvxBlinkItem Flash SID_ATTR_FLASH
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3649,7 +3520,6 @@ SfxObjectItem FmExplorerController SID_FM_FMEXPLORER_CONTROL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -3674,7 +3544,6 @@ SfxObjectItem FmFilterNavigatorController SID_FM_FILTER_NAVIGATOR_CONTROL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -3744,7 +3613,6 @@ SvxFontHeightItem FontHeight SID_ATTR_CHAR_FONTHEIGHT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3769,7 +3637,6 @@ SvxFontHeightItem FontHeighLatin SID_ATTR_CHAR_LATIN_FONTHEIGHT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3794,7 +3661,6 @@ SvxFontHeightItem FontHeightCJK SID_ATTR_CHAR_CJK_FONTHEIGHT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3819,7 +3685,6 @@ SvxFontHeightItem FontHeightCTL SID_ATTR_CHAR_CTL_FONTHEIGHT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3844,7 +3709,6 @@ SfxBoolItem FontWork SID_FONTWORK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3869,7 +3733,6 @@ XFormTextAdjustItem FontWorkTextAdjust SID_FORMTEXT_ADJUST
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3894,7 +3757,6 @@ XFormTextDistanceItem FontWorkTextDistance SID_FORMTEXT_DISTANCE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3919,7 +3781,6 @@ XFormTextMirrorItem FontWorkTextMirror SID_FORMTEXT_MIRROR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3944,7 +3805,6 @@ XFormTextOutlineItem FontWorkTextOutline SID_FORMTEXT_OUTLINE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3969,7 +3829,6 @@ XFormTextShadowItem FontWorkTextShadow SID_FORMTEXT_SHADOW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3994,7 +3853,6 @@ XFormTextShadowColorItem FontWorkTextShadowColor SID_FORMTEXT_SHDWCOLOR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4019,7 +3877,6 @@ XFormTextShadowXValItem FontWorkTextShadowXVal SID_FORMTEXT_SHDWXVAL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4044,7 +3901,6 @@ XFormTextShadowYValItem FontWorkTextShadowYVal SID_FORMTEXT_SHDWYVAL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4069,7 +3925,6 @@ XFormTextStartItem FontWorkTextStart SID_FORMTEXT_START
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4094,7 +3949,6 @@ XFormTextStyleItem FontWorkTextStyle SID_FORMTEXT_STYLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4119,7 +3973,6 @@ SfxVoidItem FormatArea SID_ATTRIBUTES_AREA
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4142,7 +3995,6 @@ XFormTextHideFormItem FormatFontWorkClose SID_FORMTEXT_HIDEFORM
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4167,7 +4019,6 @@ SfxVoidItem FormatGroup SID_GROUP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4190,7 +4041,6 @@ SfxVoidItem FormatLine SID_ATTRIBUTES_LINE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4213,7 +4063,6 @@ SfxBoolItem FormattedField SID_FM_FORMATTEDFIELD
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -4238,7 +4087,6 @@ SfxBoolItem ScrollBar SID_FM_SCROLLBAR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -4263,7 +4111,6 @@ SfxBoolItem SpinButton SID_FM_SPINBUTTON
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -4288,7 +4135,6 @@ SfxBoolItem InsertFormattedField SID_INSERT_FORMATTEDFIELD
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4313,7 +4159,6 @@ SfxVoidItem FormatUngroup SID_UNGROUP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4336,7 +4181,6 @@ SfxVoidItem FormFilter SID_FM_FILTER_START
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -4359,7 +4203,6 @@ SfxBoolItem FormFiltered SID_FM_FORM_FILTERED
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -4385,7 +4228,6 @@ SfxVoidItem FormFilterExecute SID_FM_FILTER_EXECUTE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -4408,7 +4250,6 @@ SfxVoidItem FormFilterExit SID_FM_FILTER_EXIT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -4431,7 +4272,6 @@ SfxBoolItem FormFilterNavigator SID_FM_FILTER_NAVIGATOR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -4454,7 +4294,6 @@ SfxBoolItem FormProperties SID_FM_PROPERTIES
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4479,7 +4318,6 @@ SfxBoolItem Freeline SID_DRAW_FREELINE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -4504,7 +4342,6 @@ SfxBoolItem Freeline_Unfilled SID_DRAW_FREELINE_NOFILL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -4529,7 +4366,6 @@ SfxBoolItem AutoColorInvalid SID_ATTR_AUTO_COLOR_INVALID
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4579,7 +4415,6 @@ SfxBoolItem GalleryEnableAddCopy SID_GALLERY_ENABLE_ADDCOPY
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4604,7 +4439,6 @@ SfxStringListItem GetRedoStrings SID_GETREDOSTRINGS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4629,7 +4463,6 @@ SfxStringListItem GetUndoStrings SID_GETUNDOSTRINGS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4654,7 +4487,6 @@ SfxVoidItem GrafAttrCrop SID_ATTR_GRAF_CROP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4677,7 +4509,6 @@ SfxInt16Item GrafBlue SID_ATTR_GRAF_BLUE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4702,7 +4533,6 @@ SfxInt16Item GrafContrast SID_ATTR_GRAF_CONTRAST
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4727,7 +4557,6 @@ SfxUInt32Item GrafGamma SID_ATTR_GRAF_GAMMA
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4752,7 +4581,6 @@ SfxInt16Item GrafGreen SID_ATTR_GRAF_GREEN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4777,7 +4605,6 @@ SfxBoolItem GrafInvert SID_ATTR_GRAF_INVERT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4802,7 +4629,6 @@ SfxInt16Item GrafLuminance SID_ATTR_GRAF_LUMINANCE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4827,7 +4653,6 @@ SfxUInt16Item GrafMode SID_ATTR_GRAF_MODE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4852,7 +4677,6 @@ SfxInt16Item GrafRed SID_ATTR_GRAF_RED
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4877,7 +4701,6 @@ SfxUInt16Item GrafTransparence SID_ATTR_GRAF_TRANSPARENCE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4902,7 +4725,6 @@ SfxVoidItem GraphicFilterInvert SID_GRFFILTER_INVERT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4925,7 +4747,6 @@ SfxVoidItem GraphicFilterMosaic SID_GRFFILTER_MOSAIC
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4948,7 +4769,6 @@ SfxVoidItem GraphicFilterPopart SID_GRFFILTER_POPART
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4971,7 +4791,6 @@ SfxVoidItem GraphicFilterPoster SID_GRFFILTER_POSTER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4994,7 +4813,6 @@ SfxVoidItem GraphicFilterRelief SID_GRFFILTER_EMBOSS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5017,7 +4835,6 @@ SfxVoidItem GraphicFilterRemoveNoise SID_GRFFILTER_REMOVENOISE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5040,7 +4857,6 @@ SfxVoidItem GraphicFilterSepia SID_GRFFILTER_SEPIA
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5063,7 +4879,6 @@ SfxVoidItem GraphicFilterSharpen SID_GRFFILTER_SHARPEN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5086,7 +4901,6 @@ SfxVoidItem GraphicFilterSmooth SID_GRFFILTER_SMOOTH
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5109,7 +4923,6 @@ SfxVoidItem GraphicFilterSobel SID_GRFFILTER_SOBEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5132,7 +4945,6 @@ SfxVoidItem GraphicFilterSolarize SID_GRFFILTER_SOLARIZE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5155,7 +4967,6 @@ SfxVoidItem GraphicFilterToolbox SID_GRFFILTER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5180,7 +4991,6 @@ SfxBoolItem Grid SID_FM_DBGRID
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5205,7 +5015,6 @@ SfxBoolItem GridUse SID_GRID_USE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5230,7 +5039,6 @@ SfxBoolItem GridVisible SID_GRID_VISIBLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5255,7 +5063,6 @@ SfxBoolItem GroupBox SID_FM_GROUPBOX
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5280,7 +5087,6 @@ SfxBoolItem Groupbox SID_INSERT_GROUPBOX
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -5305,7 +5111,6 @@ SfxRectangleItem HeaderFooterBorder SID_RULER_LR_MIN_MAX
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5330,7 +5135,6 @@ SfxBoolItem HelplinesMove SID_HELPLINES_MOVE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5355,7 +5159,6 @@ SfxBoolItem HFixedLine SID_INSERT_HFIXEDLINE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5380,7 +5183,6 @@ SfxBoolItem HScrollbar SID_INSERT_HSCROLLBAR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -5405,7 +5207,6 @@ SvxHyperlinkItem Hyperlink SID_HYPERLINK_GETLINK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -5430,7 +5231,6 @@ SfxBoolItem Imagebutton SID_FM_IMAGEBUTTON
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5455,7 +5255,6 @@ SfxBoolItem ImageControl SID_FM_IMAGECONTROL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5480,7 +5279,6 @@ SfxBoolItem InsertImageControl SID_INSERT_IMAGECONTROL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5505,7 +5303,6 @@ SfxBoolItem ImageMapDialog SID_IMAP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5530,7 +5327,6 @@ SfxBoolItem ImageMapExecute SID_IMAP_EXEC
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5553,7 +5349,6 @@ SfxVoidItem ExternalEdit SID_EXTERNAL_EDIT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5575,7 +5370,6 @@ SfxVoidItem RotateLeft SID_ROTATE_GRAPHIC_LEFT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5597,7 +5391,6 @@ SfxVoidItem RotateRight SID_ROTATE_GRAPHIC_RIGHT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5619,7 +5412,6 @@ SfxVoidItem Crop SID_OBJECT_CROP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -5644,7 +5436,6 @@ SfxVoidItem ChangePicture SID_CHANGE_PICTURE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -5666,7 +5457,6 @@ SfxVoidItem SaveGraphic SID_SAVE_GRAPHIC
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -5688,7 +5478,6 @@ SfxVoidItem CompressGraphic SID_COMPRESS_GRAPHIC
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -5711,7 +5500,6 @@ SfxBoolItem Init3D SID_3D_INIT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5736,7 +5524,6 @@ SfxVoidItem InPlaceObjectResize SID_OBJECTRESIZE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -5759,7 +5546,6 @@ SfxVoidItem InsertAnnotation SID_INSERT_POSTIT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5781,7 +5567,6 @@ SfxVoidItem EditAnnotation SID_EDIT_POSTIT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5803,7 +5588,6 @@ SfxBoolItem ShowAnnotations SID_SHOW_POSTIT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5827,7 +5611,6 @@ SfxVoidItem ReplyToAnnotation SID_REPLYTO_POSTIT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -5851,7 +5634,6 @@ SfxVoidItem DeleteAnnotation SID_DELETE_POSTIT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5875,7 +5657,6 @@ SfxVoidItem DeleteAllAnnotation SID_DELETEALL_POSTIT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5897,7 +5678,6 @@ SfxVoidItem DeleteAllAnnotationByAuthor SID_DELETEALLBYAUTHOR_POSTIT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -5921,7 +5701,6 @@ SfxVoidItem NextAnnotation SID_NEXT_POSTIT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5945,7 +5724,6 @@ SfxVoidItem PreviousAnnotation SID_PREVIOUS_POSTIT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5968,7 +5746,6 @@ SfxVoidItem InsertGalleryPic SID_GALLERY_FORMATS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -6060,7 +5837,6 @@ SfxBoolItem InsertMode SID_ATTR_INSERT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6085,7 +5861,6 @@ SfxVoidItem DefaultNumbering FN_NUM_NUMBERING_ON
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
ImageRotation = TRUE;
ImageReflection = TRUE;
@@ -6111,7 +5886,6 @@ SfxUInt16Item CurrentBulletListType FN_BUL_NUM_RULE_INDEX
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -6131,7 +5905,6 @@ SfxUInt16Item CurrentNumListType FN_NUM_NUM_RULE_INDEX
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -6223,7 +5996,6 @@ SfxVoidItem InsertSymbol SID_CHARMAP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6246,7 +6018,6 @@ SfxVoidItem InsertSpreadsheet SID_ATTR_TABLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6296,7 +6067,6 @@ SfxVoidItem InsertTextFrame SID_INSERT_FRAME
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6319,7 +6089,6 @@ SfxVoidItem InternetDialog SID_INET_DLG
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6342,7 +6111,6 @@ SfxVoidItem Intersect SID_POLY_INTERSECT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6365,7 +6133,6 @@ SvxPostureItem Italic SID_ATTR_CHAR_POSTURE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6390,7 +6157,6 @@ SvxPostureItem ItalicLatin SID_ATTR_CHAR_LATIN_POSTURE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6415,7 +6181,6 @@ SvxPostureItem ItalicCJK SID_ATTR_CHAR_CJK_POSTURE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6440,7 +6205,6 @@ SvxPostureItem ItalicCTL SID_ATTR_CHAR_CTL_POSTURE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6465,7 +6229,6 @@ SfxBoolItem JustifyPara SID_ATTR_PARA_ADJUST_BLOCK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
ImageRotation = TRUE;
ImageReflection = TRUE;
@@ -6492,7 +6255,6 @@ SfxBoolItem InsertFixedText SID_INSERT_FIXEDTEXT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -6517,7 +6279,6 @@ SfxBoolItem Label SID_FM_FIXEDTEXT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6542,7 +6303,6 @@ SvxLanguageItem Language SID_ATTR_CHAR_LANGUAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6567,7 +6327,6 @@ SvxLanguageItem LanguageLatin SID_ATTR_CHAR_LATIN_LANGUAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6592,7 +6351,6 @@ SfxBoolItem LastRecord SID_FM_RECORD_LAST
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -6618,7 +6376,6 @@ SfxVoidItem LeaveFMCreateMode SID_FM_LEAVE_CREATE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -6641,7 +6398,6 @@ SfxVoidItem LeaveGroup SID_LEAVE_GROUP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6664,7 +6420,6 @@ SfxBoolItem LeftPara SID_ATTR_PARA_ADJUST_LEFT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
ImageRotation = TRUE;
Readonly = FALSE,
@@ -6690,7 +6445,6 @@ SvxLRSpaceItem LeftRightMargin SID_ATTR_LRSPACE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6715,7 +6469,6 @@ SfxVoidItem LeftRightParaMargin SID_ATTR_PARA_LRSPACE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -6738,7 +6491,6 @@ SfxVoidItem LeftRightParaMargin_Vertical SID_ATTR_PARA_LRSPACE_VERTICAL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -6761,7 +6513,6 @@ SfxBoolItem Line SID_DRAW_LINE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -6786,7 +6537,6 @@ SfxBoolItem Line_Diagonal SID_DRAW_XLINE
Container = FALSE,
RecordAbsolute = FALSE,
RecordManual;
- Synchron;
Readonly = FALSE,
@@ -6811,7 +6561,6 @@ SvxColorItem FrameLineColor SID_FRAME_LINECOLOR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6836,7 +6585,6 @@ XLineDashItem LineDash SID_ATTR_LINE_DASH
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6861,7 +6609,6 @@ SfxBoolItem LineEndStyle SID_ATTR_LINEEND_STYLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -6887,7 +6634,6 @@ SvxLineSpacingItem LineSpacing SID_ATTR_PARA_LINESPACE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6911,7 +6657,6 @@ SvxULSpaceItem ULSpacing SID_ATTR_PARA_ULSPACE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6936,7 +6681,6 @@ SvxLineItem LineStyle SID_FRAME_LINESTYLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6961,7 +6705,6 @@ XLineWidthItem LineWidth SID_ATTR_LINE_WIDTH
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6986,7 +6729,6 @@ SfxBoolItem ListBox SID_FM_LISTBOX
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7011,7 +6753,6 @@ SfxBoolItem InsertListbox SID_INSERT_LISTBOX
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -7036,7 +6777,6 @@ SfxVoidItem Merge SID_POLY_MERGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -7082,7 +6822,6 @@ SfxBoolItem NewRecord SID_FM_RECORD_NEW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -7108,7 +6847,6 @@ SfxBoolItem NextRecord SID_FM_RECORD_NEXT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -7134,7 +6872,6 @@ SfxBoolItem NumericField SID_FM_NUMERICFIELD
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7159,7 +6896,6 @@ SfxBoolItem InsertNumericField SID_INSERT_NUMERICFIELD
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7184,7 +6920,6 @@ SvxDrawAlignItem ObjectAlign SID_OBJECT_ALIGN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7211,7 +6946,6 @@ SfxVoidItem ObjectBackOne SID_FRAME_DOWN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -7234,7 +6968,6 @@ SfxVoidItem ObjectForwardOne SID_FRAME_UP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -7282,7 +7015,6 @@ SfxVoidItem OrderCrit SID_FM_ORDERCRIT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -7305,7 +7037,6 @@ SvxOrphansItem Orphan SID_ATTR_PARA_ORPHANS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7330,7 +7061,6 @@ SfxVoidItem OutlineBullet SID_OUTLINE_BULLET
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
ImageRotation = TRUE;
ImageReflection = TRUE;
@@ -7353,7 +7083,6 @@ SfxUInt16Item SetNumber FN_SVX_SET_NUMBER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7377,7 +7106,6 @@ SfxUInt16Item SetBullet FN_SVX_SET_BULLET
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7402,7 +7130,6 @@ SfxVoidItem OutlineCollapse SID_OUTLINE_COLLAPSE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -7425,7 +7152,6 @@ SfxVoidItem OutlineCollapseAll SID_OUTLINE_COLLAPSE_ALL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -7448,7 +7174,6 @@ SfxVoidItem OutlineDown SID_OUTLINE_DOWN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -7471,7 +7196,6 @@ SfxVoidItem OutlineExpand SID_OUTLINE_EXPAND
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -7494,7 +7218,6 @@ SfxVoidItem OutlineExpandAll SID_OUTLINE_EXPAND_ALL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -7517,7 +7240,6 @@ SvxContourItem OutlineFont SID_ATTR_CHAR_CONTOUR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7542,7 +7264,6 @@ SfxBoolItem OutlineFormat SID_OUTLINE_FORMAT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7567,7 +7288,6 @@ SfxVoidItem OutlineLeft SID_OUTLINE_LEFT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -7590,7 +7310,6 @@ SfxVoidItem OutlineRight SID_OUTLINE_RIGHT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -7613,7 +7332,6 @@ SfxVoidItem OutlineUp SID_OUTLINE_UP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -7636,7 +7354,6 @@ SvxFormatBreakItem Pagebreak SID_ATTR_PARA_PAGEBREAK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7661,7 +7378,6 @@ SvxPaperBinItem PagePaperBin SID_ATTR_PAGE_PAPERBIN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7686,7 +7402,6 @@ SvxSizeItem AttributePageSize SID_ATTR_PAGE_SIZE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7711,7 +7426,6 @@ SvxPageModelItem AttributeParaModel SID_ATTR_PARA_MODEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7736,7 +7450,6 @@ SvxPageItem AttributePage SID_ATTR_PAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -7761,7 +7474,6 @@ SvxAutoKernItem PairKerning SID_ATTR_CHAR_AUTOKERN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7809,7 +7521,6 @@ SvxFormatKeepItem ParaKeepTogether SID_ATTR_PARA_KEEP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7834,7 +7545,6 @@ SvxFormatSplitItem ParaSplit SID_ATTR_PARA_SPLIT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7859,7 +7569,6 @@ SfxBoolItem InsertPatternField SID_INSERT_PATTERNFIELD
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7884,7 +7593,6 @@ SfxBoolItem PatternField SID_FM_PATTERNFIELD
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7909,7 +7617,6 @@ SfxVoidItem Pie SID_DRAW_PIE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -7935,7 +7642,6 @@ SfxVoidItem Pie_Unfilled SID_DRAW_PIE_NOFILL
Container = FALSE,
RecordAbsolute = FALSE,
RecordManual;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -7984,7 +7690,6 @@ SfxBoolItem Polygon_Diagonal SID_DRAW_XPOLYGON
Container = FALSE,
RecordAbsolute = FALSE,
RecordManual;
- Synchron;
Readonly = FALSE,
@@ -8009,7 +7714,6 @@ SfxBoolItem Polygon_Diagonal_Unfilled SID_DRAW_XPOLYGON_NOFILL
Container = FALSE,
RecordAbsolute = FALSE,
RecordManual;
- Synchron;
Readonly = FALSE,
@@ -8034,7 +7738,6 @@ SfxBoolItem Polygon_Unfilled SID_DRAW_POLYGON_NOFILL
Container = FALSE,
RecordAbsolute = FALSE,
RecordManual;
- Synchron;
Readonly = FALSE,
@@ -8059,7 +7762,6 @@ SfxPointItem Position SID_ATTR_POSITION
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -8084,7 +7786,6 @@ SfxBoolItem Preview SID_INSERT_PREVIEW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -8109,7 +7810,6 @@ SfxBoolItem PrevRecord SID_FM_RECORD_PREV
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -8135,7 +7835,6 @@ SfxBoolItem ProgressBar SID_INSERT_PROGRESSBAR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -8160,7 +7859,6 @@ SfxObjectItem PropertyController SID_FM_PROPERTY_CONTROL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -8185,7 +7883,6 @@ SfxBoolItem Pushbutton SID_FM_PUSHBUTTON
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -8210,7 +7907,6 @@ SfxBoolItem InsertPushbutton SID_INSERT_PUSHBUTTON
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -8236,7 +7932,6 @@ SfxBoolItem InsertFormRadio SID_INSERT_FORM_RADIO
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -8261,7 +7956,6 @@ SfxBoolItem InsertFormCheck SID_INSERT_FORM_CHECK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -8286,7 +7980,6 @@ SfxBoolItem InsertFormList SID_INSERT_FORM_LIST
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -8311,7 +8004,6 @@ SfxBoolItem InsertFormCombo SID_INSERT_FORM_COMBO
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -8335,7 +8027,6 @@ SfxBoolItem InsertFormSpin SID_INSERT_FORM_SPIN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -8360,7 +8051,6 @@ SfxBoolItem InsertFormVScroll SID_INSERT_FORM_VSCROLL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -8386,7 +8076,6 @@ SfxBoolItem InsertFormHScroll SID_INSERT_FORM_HSCROLL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -8411,7 +8100,6 @@ SfxBoolItem Radiobutton SID_INSERT_RADIOBUTTON
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -8436,7 +8124,6 @@ SfxBoolItem RadioButton SID_FM_RADIOBUTTON
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -8461,7 +8148,6 @@ SfxBoolItem ReadOnlyMode SID_READONLY_MODE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -8486,7 +8172,6 @@ SfxBoolItem RecFromText SID_FM_RECORD_FROM_TEXT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -8512,7 +8197,6 @@ SfxBoolItem RecSave SID_FM_RECORD_SAVE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -8538,7 +8222,6 @@ SfxVoidItem RecSearch SID_FM_SEARCH
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxVoidItem
@@ -8564,7 +8247,6 @@ SfxVoidItem Rect SID_DRAW_RECT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -8590,7 +8272,6 @@ SfxVoidItem Rect_Rounded SID_DRAW_RECT_ROUND
Container = FALSE,
RecordAbsolute = FALSE,
RecordManual;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -8616,7 +8297,6 @@ SfxVoidItem Rect_Rounded_Unfilled SID_DRAW_RECT_ROUND_NOFILL
Container = FALSE,
RecordAbsolute = FALSE,
RecordManual;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -8642,7 +8322,6 @@ SfxVoidItem Rect_Unfilled SID_DRAW_RECT_NOFILL
Container = FALSE,
RecordAbsolute = FALSE,
RecordManual;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -8668,7 +8347,6 @@ SfxBoolItem RecText SID_FM_RECORD_TEXT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -8694,7 +8372,6 @@ SfxStringItem RecTotal SID_FM_RECORD_TOTAL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxStringItem
@@ -8720,7 +8397,6 @@ SfxBoolItem RecUndo SID_FM_RECORD_UNDO
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -8746,7 +8422,6 @@ SfxVoidItem Refresh SID_FM_REFRESH
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -8769,7 +8444,6 @@ SfxVoidItem RefreshFormControl SID_FM_REFRESH_FORM_CONTROL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -8792,7 +8466,6 @@ SfxVoidItem RemoveFilter SID_FM_FILTER_REMOVE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -8815,7 +8488,6 @@ SfxVoidItem RemoveFilterSort SID_FM_REMOVE_FILTER_SORT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -8838,7 +8510,6 @@ SfxSetItem ReplaceSet FID_SEARCH_REPLACESET
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -8861,7 +8532,6 @@ SfxBoolItem RightPara SID_ATTR_PARA_ADJUST_RIGHT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
ImageRotation = TRUE;
Readonly = FALSE,
@@ -8887,7 +8557,6 @@ SvxLRSpaceItem RulerBorderDistance SID_RULER_BORDER_DISTANCE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -8912,7 +8581,6 @@ SvxColumnItem RulerBorders SID_RULER_BORDERS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -8937,7 +8605,6 @@ SvxColumnItem RulerBordersVertical SID_RULER_BORDERS_VERTICAL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -8962,7 +8629,6 @@ SfxPointItem RulerNullOffset SID_RULER_NULL_OFFSET
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -8987,7 +8653,6 @@ SvxPagePosSizeItem RulerPagePos SID_RULER_PAGE_POS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -9012,7 +8677,6 @@ SvxProtectItem RulerProtect SID_RULER_PROTECT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -9037,7 +8701,6 @@ SfxVoidItem SbaExecuteSql SID_FM_EXECUTE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -9060,7 +8723,6 @@ SfxBoolItem SbaNativeSql SID_FM_NATIVESQL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -9106,7 +8768,6 @@ SfxVoidItem ScEditOptions SID_SC_EDITOPTIONS
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -9129,7 +8790,6 @@ SfxVoidItem SchEditOptions SID_SCH_EDITOPTIONS
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -9152,7 +8812,6 @@ SfxVoidItem SdEditOptions SID_SD_EDITOPTIONS
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -9175,7 +8834,6 @@ SfxVoidItem SdGraphicOptions SID_SD_GRAPHIC_OPTIONS
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -9198,7 +8856,6 @@ SfxVoidItem SearchOff FID_SEARCH_OFF
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -9221,7 +8878,6 @@ SfxVoidItem SearchOn FID_SEARCH_ON
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -9244,7 +8900,6 @@ SfxSetItem SearchSet FID_SEARCH_SEARCHSET
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -9267,7 +8922,6 @@ SfxVoidItem Select SID_SELECT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -9290,7 +8944,6 @@ SfxVoidItem SendToBack SID_FRAME_TO_BOTTOM
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -9313,7 +8966,6 @@ SfxVoidItem SetDefault SID_SET_DEFAULT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -9336,7 +8988,6 @@ SfxVoidItem SetHyperlink SID_HYPERLINK_SETLINK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -9359,7 +9010,6 @@ SvxHyphenZoneItem SetHyphenZone SID_ATTR_PARA_HYPHENZONE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -9384,7 +9034,6 @@ SvxLongLRSpaceItem SetLongLeftRightMargin SID_ATTR_LONG_LRSPACE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -9409,7 +9058,6 @@ SvxLongULSpaceItem SetLongTopBottomMargin SID_ATTR_LONG_ULSPACE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SvxLongULSpaceItem
@@ -9435,7 +9083,6 @@ SfxVoidItem SetObjectToBackground SID_OBJECT_HELL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -9458,7 +9105,6 @@ SfxVoidItem SetObjectToForeground SID_OBJECT_HEAVEN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -9481,7 +9127,6 @@ SfxVoidItem SetPageMaxSize SID_ATTR_PAGE_MAXSIZE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -9504,7 +9149,6 @@ SvxShadowItem BorderShadow SID_ATTR_BORDER_SHADOW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -9530,7 +9174,6 @@ SdrOnOffItem FillShadow SID_ATTR_FILL_SHADOW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -9555,7 +9198,6 @@ XColorItem FillShadowColor SID_ATTR_SHADOW_COLOR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -9580,7 +9222,6 @@ SdrPercentItem FillShadowTransparency SID_ATTR_SHADOW_TRANSPARENCE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -9605,7 +9246,6 @@ SdrMetricItem FillShadowXDistance SID_ATTR_SHADOW_XDISTANCE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -9630,7 +9270,6 @@ SdrMetricItem FillShadowYDistance SID_ATTR_SHADOW_YDISTANCE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -9654,7 +9293,6 @@ SvxShadowedItem Shadowed SID_ATTR_CHAR_SHADOWED
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -9705,7 +9343,6 @@ SfxBoolItem ShowItemBrowser SID_SHOW_ITEMBROWSER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -9730,7 +9367,6 @@ SfxBoolItem ShowPropBrowser SID_SHOW_PROPERTYBROWSER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -9780,7 +9416,6 @@ SfxBoolItem ShowPropertyBrowser SID_FM_SHOW_PROPERTY_BROWSER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -9806,7 +9441,6 @@ SfxBoolItem ShowRuler SID_RULER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -9831,7 +9465,6 @@ SfxVoidItem SimEditOptions SID_SIM_EDITOPTIONS
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -9854,7 +9487,6 @@ SvxSizeItem Size SID_ATTR_SIZE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -9879,7 +9511,6 @@ SfxVoidItem SmEditOptions SID_SM_EDITOPTIONS
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -9902,7 +9533,6 @@ SfxVoidItem SortDown SID_FM_SORTDOWN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -9925,7 +9555,6 @@ SfxVoidItem Sortup SID_FM_SORTUP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -9947,7 +9576,6 @@ SfxBoolItem SpacePara1 SID_ATTR_PARA_LINESPACE_10
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
ImageRotation = TRUE;
ImageReflection = TRUE;
@@ -9974,7 +9602,6 @@ SfxBoolItem SpacePara15 SID_ATTR_PARA_LINESPACE_15
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
ImageRotation = TRUE;
ImageReflection = TRUE;
@@ -10001,7 +9628,6 @@ SfxBoolItem SpacePara2 SID_ATTR_PARA_LINESPACE_20
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
ImageRotation = TRUE;
ImageReflection = TRUE;
@@ -10028,7 +9654,6 @@ SvxKerningItem Spacing SID_ATTR_CHAR_KERNING
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -10053,7 +9678,6 @@ SfxBoolItem SpellOnline SID_AUTOSPELL_CHECK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -10078,7 +9702,6 @@ SfxBoolItem Spinbutton SID_INSERT_SPINBUTTON
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -10103,7 +9726,6 @@ SfxVoidItem Square SID_DRAW_SQUARE
Container = FALSE,
RecordAbsolute = FALSE,
RecordManual;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -10129,7 +9751,6 @@ SfxVoidItem Square_Rounded SID_DRAW_SQUARE_ROUND
Container = FALSE,
RecordAbsolute = FALSE,
RecordManual;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -10155,7 +9776,6 @@ SfxVoidItem Square_Rounded_Unfilled SID_DRAW_SQUARE_ROUND_NOFILL
Container = FALSE,
RecordAbsolute = FALSE,
RecordManual;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -10181,7 +9801,6 @@ SfxVoidItem Square_Unfilled SID_DRAW_SQUARE_NOFILL
Container = FALSE,
RecordAbsolute = FALSE,
RecordManual;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -10207,7 +9826,6 @@ SfxUInt32Item State3D SID_3D_STATE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -10232,7 +9850,6 @@ SvxCrossedOutItem Strikeout SID_ATTR_CHAR_STRIKEOUT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -10257,7 +9874,6 @@ SfxBoolItem SubScript SID_SET_SUB_SCRIPT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -10282,7 +9898,6 @@ SfxVoidItem Substract SID_POLY_SUBSTRACT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -10304,7 +9919,6 @@ SfxVoidItem EqualizeWidth SID_EQUALIZEWIDTH
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -10326,7 +9940,6 @@ SfxVoidItem EqualizeHeight SID_EQUALIZEHEIGHT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -10348,7 +9961,6 @@ SfxBoolItem SuperScript SID_SET_SUPER_SCRIPT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -10373,7 +9985,6 @@ SfxVoidItem SwEditOptions SID_SW_EDITOPTIONS
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -10500,7 +10111,6 @@ SfxBoolItem Text SID_ATTR_CHAR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -10525,7 +10135,6 @@ SfxBoolItem DrawText SID_DRAW_TEXT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -10553,7 +10162,6 @@ SfxBoolItem Text_Marquee SID_DRAW_TEXT_MARQUEE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -10578,7 +10186,6 @@ SfxBoolItem TextdirectionLeftToRight SID_TEXTDIRECTION_LEFT_TO_RIGHT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -10603,7 +10210,6 @@ SfxBoolItem TextdirectionTopToBottom SID_TEXTDIRECTION_TOP_TO_BOTTOM
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -10628,7 +10234,6 @@ SdrTextFitToSizeTypeItem TextFitToSize SID_ATTR_TEXT_FITTOSIZE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -10676,7 +10281,6 @@ SfxBoolItem InsertTimeField SID_INSERT_TIMEFIELD
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -10701,7 +10305,6 @@ SfxBoolItem TimeField SID_FM_TIMEFIELD
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -10749,7 +10352,6 @@ SfxBoolItem ToggleObjectRotateMode SID_OBJECT_ROTATE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -10772,7 +10374,6 @@ SfxBoolItem ToolEdit SID_TEXTEDIT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -10797,7 +10398,6 @@ SfxBoolItem SelectObject SID_OBJECT_SELECT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -10822,7 +10422,6 @@ SvxULSpaceItem TopBottomMargin SID_ATTR_ULSPACE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -10847,7 +10446,6 @@ SfxVoidItem TransformDialog SID_ATTR_TRANSFORM
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -10916,7 +10514,6 @@ SvxTextLineItem Underline SID_ATTR_CHAR_UNDERLINE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -10941,7 +10538,6 @@ SvxTextLineItem Overline SID_ATTR_CHAR_OVERLINE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -10966,7 +10562,6 @@ SfxBoolItem URLButton SID_INSERT_URLBUTTON
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -11016,7 +10611,6 @@ SfxBoolItem VerticalCaption SID_DRAW_CAPTION_VERTICAL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -11041,7 +10635,6 @@ SfxBoolItem VerticalText SID_DRAW_TEXT_VERTICAL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -11066,7 +10659,6 @@ SfxBoolItem VFixedLine SID_INSERT_VFIXEDLINE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -11091,7 +10683,6 @@ SfxVoidItem ViewFormAsGrid SID_FM_VIEW_AS_GRID
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -11117,7 +10708,6 @@ SfxBoolItem VScrollbar SID_INSERT_VSCROLLBAR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -11142,7 +10732,6 @@ SvxWidowsItem Widow SID_ATTR_PARA_WIDOWS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -11167,7 +10756,6 @@ SfxBoolItem Window3D SID_3D_WIN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -11192,7 +10780,6 @@ SvxWordLineModeItem WordMode SID_ATTR_CHAR_WORDLINEMODE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -11217,7 +10804,6 @@ XLineColorItem XLineColor SID_ATTR_LINE_COLOR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -11242,7 +10828,6 @@ XLineStyleItem XLineStyle SID_ATTR_LINE_STYLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -11267,7 +10852,6 @@ SfxVoidItem Zoom100Percent SID_SIZE_REAL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -11290,7 +10874,6 @@ SfxVoidItem ZoomObjects SID_SIZE_OPTIMAL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -11313,7 +10896,6 @@ SfxVoidItem ZoomOptimal SID_SIZE_ALL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -11336,7 +10918,6 @@ SfxVoidItem ZoomPage SID_SIZE_PAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -11359,7 +10940,6 @@ SfxVoidItem ZoomPageWidth SID_SIZE_PAGE_WIDTH
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -11382,7 +10962,6 @@ SfxVoidItem ZoomVisArea SID_SIZE_VISAREA
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -11405,7 +10984,6 @@ SfxVoidItem ToggleControlFocus SID_FM_TOGGLECONTROLFOCUS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxVoidItem
@@ -11431,7 +11009,6 @@ SfxVoidItem CreateFieldControl SID_FM_CREATE_FIELDCONTROL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxVoidItem
@@ -11457,7 +11034,6 @@ SfxBoolItem SelectMode SID_INSERT_SELECT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -11482,7 +11058,6 @@ SvxParaVertAlignItem VerticalParagraphAlignment SID_PARA_VERTALIGN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -11507,7 +11082,6 @@ SvxCharReliefItem CharacterRelief SID_ATTR_CHAR_RELIEF
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -11532,7 +11106,6 @@ SvxBrushItem CharacterBackgroundPattern SID_ATTR_BRUSH_CHAR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -11557,7 +11130,6 @@ SvxCharRotateItem CharacterRotation SID_ATTR_CHAR_ROTATED
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -11582,7 +11154,6 @@ SvxCharScaleWidthItem CharacterWidthScalingFactor SID_ATTR_CHAR_SCALEWIDTH
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -11607,7 +11178,6 @@ SfxUInt32Item NumberFormatValue SID_ATTR_NUMBERFORMAT_VALUE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -11632,7 +11202,6 @@ SvxHorJustifyItem HorizontalJustification SID_ATTR_ALIGN_HOR_JUSTIFY
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -11657,7 +11226,6 @@ SvxVerJustifyItem VerticalJustification SID_ATTR_ALIGN_VER_JUSTIFY
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -11682,7 +11250,6 @@ SfxUInt16Item AlignmentIndent SID_ATTR_ALIGN_INDENT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -11707,7 +11274,6 @@ SfxBoolItem AlignmentHyphenation SID_ATTR_ALIGN_HYPHENATION
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -11732,7 +11298,6 @@ SfxInt32Item AlignmentRotation SID_ATTR_ALIGN_DEGREES
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -11757,7 +11322,6 @@ SvxRotateModeItem AlignmentRotationMode SID_ATTR_ALIGN_LOCKPOS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -11782,7 +11346,6 @@ SvxMarginItem AlignmentMargin SID_ATTR_ALIGN_MARGIN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -11807,7 +11370,6 @@ SfxBoolItem AlignmentStacked SID_ATTR_ALIGN_STACKED
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -11832,7 +11394,6 @@ SfxBoolItem ParaLeftToRight SID_ATTR_PARA_LEFT_TO_RIGHT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
ImageRotation = TRUE;
Readonly = FALSE,
@@ -11858,7 +11419,6 @@ SfxBoolItem ParaRightToLeft SID_ATTR_PARA_RIGHT_TO_LEFT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
ImageRotation = TRUE;
Readonly = FALSE,
@@ -11908,7 +11468,6 @@ SfxVoidItem OpenHyperlinkOnCursor SID_OPEN_HYPERLINK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -11929,7 +11488,6 @@ SfxBoolItem CTLFontState SID_CTLFONT_STATE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -11950,7 +11508,6 @@ SfxBoolItem VerticalTextState SID_VERTICALTEXT_STATE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -11973,7 +11530,6 @@ SfxVoidItem OpenXMLFilterSettings SID_OPEN_XML_FILTERSETTINGS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -12041,7 +11597,6 @@ SfxBoolItem SpellDialog SID_SPELL_DIALOG
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -12064,7 +11619,6 @@ SvxColumnItem RulerRows SID_RULER_ROWS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -12087,7 +11641,6 @@ SvxColumnItem RulerRowsVertical SID_RULER_ROWS_VERTICAL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -12113,7 +11666,6 @@ SvxFontListItem FontNameList SID_ATTR_CHAR_FONTLIST
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
// config:
AccelConfig = FALSE,
@@ -12234,7 +11786,6 @@ SfxVoidItem ExtrusionDepthFloater SID_EXTRUSION_DEPTH_FLOATER
ReadOnlyDoc = FALSE,
Toggle = FALSE,
Container = FALSE,
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -12257,7 +11808,6 @@ SfxVoidItem ExtrusionDepthDialog SID_EXTRUSION_DEPTH_DIALOG
ReadOnlyDoc = FALSE,
Toggle = FALSE,
Container = FALSE,
- Synchron;
/* status: */
SlotType = SvxDoubleItem
@@ -12280,7 +11830,6 @@ SfxVoidItem ExtrusionDirectionFloater SID_EXTRUSION_DIRECTION_FLOATER
ReadOnlyDoc = FALSE,
Toggle = FALSE,
Container = FALSE,
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -12515,7 +12064,6 @@ SfxBoolItem FontworkShapeType SID_FONTWORK_SHAPE_TYPE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxStringItem
@@ -12661,7 +12209,6 @@ SfxVoidItem FontworkCharacterSpacingDialog SID_FONTWORK_CHARACTER_SPACING_DIALOG
ReadOnlyDoc = FALSE,
Toggle = FALSE,
Container = FALSE,
- Synchron;
/* status: */
SlotType = SfxInt32Item
@@ -12706,7 +12253,6 @@ OfaRefItem GetColorTable SID_GET_COLORLIST
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -12729,7 +12275,6 @@ SfxVoidItem SpellCheckerChanged SID_SPELLCHECKER_CHANGED
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -12752,7 +12297,6 @@ SfxUInt16Item Year2000 SID_ATTR_YEAR2000
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -12775,7 +12319,6 @@ SfxVoidItem IncrementIndent SID_INC_INDENT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
ImageRotation = TRUE;
ImageReflection = TRUE;
@@ -12801,7 +12344,6 @@ SfxVoidItem DecrementIndent SID_DEC_INDENT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
ImageRotation = TRUE;
ImageReflection = TRUE;
@@ -12827,7 +12369,6 @@ SfxStringItem StateTableCell SID_TABLE_CELL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -12852,7 +12393,6 @@ SfxVoidItem SendOutlineToImpress SID_OUTLINE_TO_IMPRESS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -12875,7 +12415,6 @@ SfxUInt16Item DefTabStop SID_ATTR_DEFTABSTOP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -12900,7 +12439,6 @@ SvxLanguageItem DocumentLanguage SID_ATTR_LANGUAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -12925,7 +12463,6 @@ SvxLanguageItem DocumentLanguageCJK SID_ATTR_CHAR_CJK_LANGUAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -12950,7 +12487,6 @@ SvxLanguageItem DocumentLanguageCTL SID_ATTR_CHAR_CTL_LANGUAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -12975,7 +12511,6 @@ SfxBoolItem OptionsLocaleChanged SID_OPT_LOCALE_CHANGED
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -13000,7 +12535,6 @@ SfxVoidItem SbaBrwInsert SID_SBA_BRW_INSERT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -13023,7 +12557,6 @@ SfxBoolItem BasicShapes SID_DRAWTBX_CS_BASIC
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxStringItem
@@ -13049,7 +12582,6 @@ SfxBoolItem SymbolShapes SID_DRAWTBX_CS_SYMBOL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxStringItem
@@ -13075,7 +12607,6 @@ SfxBoolItem ArrowShapes SID_DRAWTBX_CS_ARROW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxStringItem
@@ -13101,7 +12632,6 @@ SfxBoolItem FlowChartShapes SID_DRAWTBX_CS_FLOWCHART
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxStringItem
@@ -13127,7 +12657,6 @@ SfxBoolItem CalloutShapes SID_DRAWTBX_CS_CALLOUT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxStringItem
@@ -13153,7 +12682,6 @@ SfxBoolItem StarShapes SID_DRAWTBX_CS_STAR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxStringItem
@@ -13197,7 +12725,6 @@ SvxDashListItem DashListState SID_DASH_LIST
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -13219,7 +12746,6 @@ SvxLineEndListItem LineEndListState SID_LINEEND_LIST
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -13240,7 +12766,6 @@ SvxColorListItem ColorTableState SID_COLOR_TABLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -13261,7 +12786,6 @@ SvxGradientListItem GradientListState SID_GRADIENT_LIST
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -13282,7 +12806,6 @@ SvxHatchListItem HatchListState SID_HATCH_LIST
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -13303,7 +12826,6 @@ SvxBitmapListItem BitmapListState SID_BITMAP_LIST
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -13325,7 +12847,6 @@ SvxEmphasisMarkItem EmphasisMark SID_ATTR_CHAR_EMPHASISMARK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -13348,7 +12869,6 @@ SfxBoolItem ShowDataNavigator SID_FM_SHOW_DATANAVIGATOR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -13374,7 +12894,6 @@ SfxObjectItem FmDataNavigatorController SID_FM_DATANAVIGATOR_CONTROL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerItem;
- Synchron;
Readonly = FALSE,
@@ -13399,7 +12918,6 @@ SfxVoidItem CommonAlignLeft SID_ALIGN_ANY_LEFT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -13422,7 +12940,6 @@ SfxVoidItem CommonAlignHorizontalCenter SID_ALIGN_ANY_HCENTER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -13444,7 +12961,6 @@ SfxVoidItem CommonAlignRight SID_ALIGN_ANY_RIGHT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -13466,7 +12982,6 @@ SfxVoidItem CommonAlignJustified SID_ALIGN_ANY_JUSTIFIED
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -13488,7 +13003,6 @@ SfxVoidItem CommonAlignTop SID_ALIGN_ANY_TOP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -13510,7 +13024,6 @@ SfxVoidItem CommonAlignVerticalCenter SID_ALIGN_ANY_VCENTER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -13532,7 +13045,6 @@ SfxVoidItem CommonAlignBottom SID_ALIGN_ANY_BOTTOM
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -13554,7 +13066,6 @@ SfxVoidItem CommonAlignHorizontalDefault SID_ALIGN_ANY_HDEFAULT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -13576,7 +13087,6 @@ SfxVoidItem CommonAlignVerticalDefault SID_ALIGN_ANY_VDEFAULT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -13598,7 +13108,6 @@ SfxVoidItem AVMediaToolBox SID_AVMEDIA_TOOLBOX
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
SlotType = avmedia_MediaItem;
/* config: */
@@ -13647,7 +13156,6 @@ SfxBoolItem ColorSettings SID_COLOR_SETTINGS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -13674,7 +13182,6 @@ SfxVoidItem MailExportFinished SID_MAIL_EXPORT_FINISHED
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -13696,7 +13203,6 @@ SfxVoidItem InsertZWSP SID_INSERT_ZWSP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -13718,7 +13224,6 @@ SfxVoidItem InsertZWNBSP SID_INSERT_ZWNBSP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -13740,7 +13245,6 @@ SfxVoidItem InsertLRM SID_INSERT_LRM
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -13762,7 +13266,6 @@ SfxVoidItem InsertRLM SID_INSERT_RLM
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -13784,7 +13287,6 @@ SfxVoidItem InsertSoftHyphen FN_INSERT_SOFT_HYPHEN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -13806,7 +13308,6 @@ SfxVoidItem InsertHardHyphen FN_INSERT_HARDHYPHEN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -13828,7 +13329,6 @@ SfxVoidItem InsertNonBreakingSpace FN_INSERT_HARD_SPACE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -13851,7 +13351,6 @@ SfxVoidItem ManageLanguage SID_BASICIDE_MANAGE_LANG
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -13874,7 +13373,6 @@ SfxStringItem CurrentLanguage SID_BASICIDE_CURRENT_LANG
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -13896,7 +13394,6 @@ SfxVoidItem MergeCells SID_TABLE_MERGE_CELLS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -13918,7 +13415,6 @@ SfxVoidItem SplitCell SID_TABLE_SPLIT_CELLS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -13940,7 +13436,6 @@ SfxVoidItem OptimizeTable SID_OPTIMIZE_TABLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -13964,7 +13459,6 @@ SfxBoolItem CellVertBottom SID_TABLE_VERT_BOTTOM
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -13989,7 +13483,6 @@ SfxBoolItem CellVertCenter SID_TABLE_VERT_CENTER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -14014,7 +13507,6 @@ SfxBoolItem CellVertTop SID_TABLE_VERT_NONE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -14082,7 +13574,6 @@ SfxVoidItem DeleteRows SID_TABLE_DELETE_ROW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -14104,7 +13595,6 @@ SfxVoidItem DeleteColumns SID_TABLE_DELETE_COL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -14126,7 +13616,6 @@ SfxVoidItem SelectTable SID_TABLE_SELECT_ALL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -14148,7 +13637,6 @@ SfxVoidItem EntireColumn SID_TABLE_SELECT_COL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -14171,7 +13659,6 @@ SfxVoidItem EntireRow SID_TABLE_SELECT_ROW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -14215,7 +13702,6 @@ SfxVoidItem AutoSum SID_TABLE_AUTOSUM
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -14261,7 +13747,6 @@ SfxVoidItem OpenSmartTagMenuOnCursor SID_OPEN_SMARTTAGMENU
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
SlotType = SvxSmartTagItem;
/* config: */
@@ -14285,7 +13770,6 @@ SvxZoomSliderItem ZoomSlider SID_ATTR_ZOOMSLIDER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -14307,7 +13791,6 @@ SvxZoomSliderItem ZoomSlider SID_ATTR_ZOOMSLIDER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
// config:
AccelConfig = FALSE,
@@ -14330,7 +13813,6 @@ SfxVoidItem LanguageStatus SID_LANGUAGE_STATUS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxStringListItem
@@ -14381,7 +13863,6 @@ SfxVoidItem Grow SID_GROW_FONT_SIZE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -14405,7 +13886,6 @@ SfxVoidItem Shrink SID_SHRINK_FONT_SIZE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -14498,7 +13978,6 @@ SfxVoidItem PrepareMailExport SID_MAIL_PREPAREEXPORT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -14524,7 +14003,6 @@ SfxUInt16Item FillTransparence SID_ATTR_FILL_TRANSPARENCE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -14549,7 +14027,6 @@ XFillFloatTransparenceItem FillFloatTransparence SID_ATTR_FILL_FLOATTRANSPARENCE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -14574,7 +14051,6 @@ SfxUInt16Item LineTransparence SID_ATTR_LINE_TRANSPARENCE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -14602,7 +14078,6 @@ XLineJointItem LineJoint SID_ATTR_LINE_JOINT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -14627,7 +14102,6 @@ XLineCapItem LineCap SID_ATTR_LINE_CAP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -14652,7 +14126,6 @@ XLineStartItem LineStart SID_ATTR_LINE_START
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -14677,7 +14150,6 @@ XLineEndItem LineEnd SID_ATTR_LINE_END
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -14702,7 +14174,6 @@ SfxUInt32Item TransformPosX SID_ATTR_TRANSFORM_POS_X
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -14727,7 +14198,6 @@ SfxUInt32Item TransformPosY SID_ATTR_TRANSFORM_POS_Y
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -14752,7 +14222,6 @@ SfxUInt32Item TransformWidth SID_ATTR_TRANSFORM_WIDTH
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -14777,7 +14246,6 @@ SfxUInt32Item TransformHeight SID_ATTR_TRANSFORM_HEIGHT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -14801,7 +14269,6 @@ SfxUInt32Item TransformRotationAngle SID_ATTR_TRANSFORM_ANGLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -14824,7 +14291,6 @@ SfxUInt32Item TransformRotationX SID_ATTR_TRANSFORM_ROT_X
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -14847,7 +14313,6 @@ SfxUInt32Item TransformRotationY SID_ATTR_TRANSFORM_ROT_Y
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -14870,7 +14335,6 @@ SfxBoolItem ProtectPos SID_ATTR_TRANSFORM_PROTECT_POS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -14893,7 +14357,6 @@ SfxBoolItem ProtectSize SID_ATTR_TRANSFORM_PROTECT_SIZE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -14917,7 +14380,6 @@ SfxVoidItem FlipHorizontal SID_FLIP_HORIZONTAL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -14942,7 +14404,6 @@ SfxVoidItem FlipVertical SID_FLIP_VERTICAL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -14967,7 +14428,6 @@ SfxBoolItem AutomaticWidth SID_ATTR_TRANSFORM_AUTOWIDTH
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -14992,7 +14452,6 @@ SfxBoolItem AutomaticHeight SID_ATTR_TRANSFORM_AUTOHEIGHT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -15016,7 +14475,6 @@ SvxLineItem BorderTLBR SID_ATTR_BORDER_DIAG_TLBR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -15039,7 +14497,6 @@ SvxLineItem BorderBLTR SID_ATTR_BORDER_DIAG_BLTR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -15087,7 +14544,6 @@ SfxVoidItem ParaspaceDecrease SID_PARASPACE_DECREASE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -15109,7 +14565,6 @@ SfxVoidItem ParaspaceIncrease SID_PARASPACE_INCREASE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -15131,7 +14586,6 @@ SfxVoidItem SetOutline FN_SVX_SET_OUTLINE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -15152,7 +14606,6 @@ SfxUInt16Item CurrentOutlineType FN_OUTLINE_RULE_INDEX
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
diff --git a/sw/sdi/swriter.sdi b/sw/sdi/swriter.sdi
index 1fbd7f6769e6..6b3fa2096dd8 100644
--- a/sw/sdi/swriter.sdi
+++ b/sw/sdi/swriter.sdi
@@ -28,7 +28,6 @@ SfxVoidItem CreateSWDrawView SID_CREATE_SW_DRAWVIEW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
MenuConfig = FALSE,
@@ -73,7 +72,6 @@ SfxBoolItem TrackChanges FN_REDLINE_ON
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -95,7 +93,6 @@ SfxBoolItem TrackChangesBar SID_TRACK_CHANGES_BAR
ReadOnlyDoc = FALSE,
Toggle = FALSE,
Container = FALSE,
- Synchron;
Readonly = FALSE,
@@ -119,7 +116,6 @@ SfxVoidItem AddAllUnknownWords FN_ADD_UNKNOWN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -141,7 +137,6 @@ SfxVoidItem AlignBottom FN_FRAME_ALIGN_VERT_BOTTOM
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxStringItem
@@ -166,7 +161,6 @@ SfxVoidItem AlignCharBottom FN_FRAME_ALIGN_VERT_CHAR_BOTTOM
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxStringItem
@@ -191,7 +185,6 @@ SfxVoidItem AlignCharTop FN_FRAME_ALIGN_VERT_CHAR_TOP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxStringItem
@@ -216,7 +209,6 @@ SfxVoidItem AlignHorizontalCenter FN_FRAME_ALIGN_HORZ_CENTER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -238,7 +230,6 @@ SfxVoidItem AlignLeft FN_FRAME_ALIGN_HORZ_LEFT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -260,7 +251,6 @@ SfxVoidItem AlignRight FN_FRAME_ALIGN_HORZ_RIGHT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -282,7 +272,6 @@ SfxVoidItem AlignRowBottom FN_FRAME_ALIGN_VERT_ROW_BOTTOM
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxStringItem
@@ -307,7 +296,6 @@ SfxVoidItem AlignRowTop FN_FRAME_ALIGN_VERT_ROW_TOP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxStringItem
@@ -332,7 +320,6 @@ SfxVoidItem AlignTop FN_FRAME_ALIGN_VERT_TOP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxStringItem
@@ -357,7 +344,6 @@ SfxVoidItem AlignVerticalCenter FN_FRAME_ALIGN_VERT_CENTER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxStringItem
@@ -382,7 +368,6 @@ SfxVoidItem AlignVerticalCharCenter FN_FRAME_ALIGN_VERT_CHAR_CENTER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxStringItem
@@ -407,7 +392,6 @@ SfxVoidItem AlignVerticalRowCenter FN_FRAME_ALIGN_VERT_ROW_CENTER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxStringItem
@@ -498,7 +482,6 @@ SfxVoidItem AutoSum FN_TABLE_AUTOSUM
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -520,7 +503,6 @@ SvxColorItem BackColor SID_ATTR_CHAR_COLOR_BACKGROUND
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -566,7 +548,6 @@ SfxVoidItem SwBackspace FN_BACKSPACE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -634,7 +615,6 @@ SfxVoidItem Calc FN_CALC_TABLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -656,7 +636,6 @@ SfxVoidItem CalculateSel FN_CALCULATE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -678,7 +657,6 @@ SfxBoolItem ChainFrames FN_FRAME_CHAIN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -746,7 +724,6 @@ SfxVoidItem CharBackgroundExt SID_ATTR_CHAR_COLOR_BACKGROUND_EXT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -771,7 +748,6 @@ SfxVoidItem CharColorExt SID_ATTR_CHAR_COLOR_EXT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -796,7 +772,6 @@ SfxVoidItem CharLeftSel FN_CHAR_LEFT_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -818,7 +793,6 @@ SfxVoidItem CharRightSel FN_CHAR_RIGHT_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -884,7 +858,6 @@ SfxBoolItem ControlCodes FN_VIEW_META_CHARS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -930,7 +903,6 @@ SfxVoidItem CreateAbstract FN_ABSTRACT_NEWDOC
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -952,7 +924,6 @@ SfxVoidItem DecrementIndentValue FN_DEC_INDENT_OFFSET
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -974,7 +945,6 @@ SfxVoidItem DecrementLevel FN_NUM_BULLET_DOWN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
ImageRotation = TRUE;
ImageReflection = TRUE;
@@ -998,7 +968,6 @@ SfxVoidItem DecrementSubLevels FN_NUM_BULLET_OUTLINE_DOWN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
ImageRotation = TRUE;
ImageReflection = TRUE;
@@ -1022,7 +991,6 @@ SfxVoidItem DeleteColumns FN_TABLE_DELETE_COL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1044,7 +1012,6 @@ SfxVoidItem DeleteRows FN_TABLE_DELETE_ROW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1066,7 +1033,6 @@ SfxVoidItem DelLine FN_DELETE_WHOLE_LINE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1088,7 +1054,6 @@ SfxVoidItem DelToEndOfLine FN_DELETE_LINE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1110,7 +1075,6 @@ SfxVoidItem DelToEndOfPara FN_DELETE_PARA
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1132,7 +1096,6 @@ SfxVoidItem DelToEndOfSentence FN_DELETE_SENT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1154,7 +1117,6 @@ SfxVoidItem DelToEndOfWord FN_DELETE_WORD
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1176,7 +1138,6 @@ SfxVoidItem DelToStartOfLine FN_DELETE_BACK_LINE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1198,7 +1159,6 @@ SfxVoidItem DelToStartOfPara FN_DELETE_BACK_PARA
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1220,7 +1180,6 @@ SfxVoidItem DelToStartOfSentence FN_DELETE_BACK_SENT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1242,7 +1201,6 @@ SfxVoidItem DelToStartOfWord FN_DELETE_BACK_WORD
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1264,7 +1222,6 @@ SfxVoidItem DistributeColumns FN_TABLE_BALANCE_CELLS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1286,7 +1243,6 @@ SfxVoidItem DistributeRows FN_TABLE_BALANCE_ROWS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1308,7 +1264,6 @@ SfxVoidItem EditCurIndex FN_EDIT_CURRENT_TOX
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1396,7 +1351,6 @@ SfxVoidItem EndOfDocumentSel FN_END_OF_DOCUMENT_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1418,7 +1372,6 @@ SfxVoidItem EndOfLineSel FN_END_OF_LINE_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1440,7 +1393,6 @@ SfxVoidItem EndOfParaSel FN_END_OF_PARA_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1462,7 +1414,6 @@ SfxVoidItem EntireColumn FN_TABLE_SELECT_COL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1484,7 +1435,6 @@ SfxVoidItem EntireRow FN_TABLE_SELECT_ROW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1528,7 +1478,6 @@ SfxVoidItem ExecuteMacroField FN_EXECUTE_MACROFIELD
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1550,7 +1499,6 @@ SfxBoolItem ExpandGlossary FN_EXPAND_GLOSSARY
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1594,7 +1542,6 @@ SfxBoolItem Fieldnames FN_VIEW_FIELDNAME
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -1618,7 +1565,6 @@ SfxBoolItem Fields FN_VIEW_FIELDS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -1642,7 +1588,6 @@ SvxColorItem FontColor SID_ATTR_CHAR_COLOR2
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -1732,7 +1677,6 @@ SwFormatDrop FormatDropcap FN_FORMAT_DROPCAPS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -1778,7 +1722,6 @@ SfxBoolItem GoDown FN_LINE_DOWN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1800,7 +1743,6 @@ SfxBoolItem GoLeft FN_CHAR_LEFT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1822,7 +1764,6 @@ SfxBoolItem GoRight FN_CHAR_RIGHT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1844,7 +1785,6 @@ SfxVoidItem GoToAnchor FN_FRAME_TO_ANCHOR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1866,7 +1806,6 @@ SfxVoidItem GoToEnd FN_END_TABLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1888,7 +1827,6 @@ SfxVoidItem GoToEndOfColumn FN_END_OF_COLUMN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1910,7 +1848,6 @@ SfxBoolItem GoToEndOfDoc FN_END_OF_DOCUMENT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1932,7 +1869,6 @@ SfxBoolItem GoToEndOfLine FN_END_OF_LINE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1954,7 +1890,6 @@ SfxVoidItem GoToEndOfNextColumn FN_END_OF_NEXT_COLUMN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1976,7 +1911,6 @@ SfxVoidItem GoToEndOfNextPage FN_END_OF_NEXT_PAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -1998,7 +1932,6 @@ SfxVoidItem GoToEndOfNextPageSel FN_END_OF_NEXT_PAGE_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2020,7 +1953,6 @@ SfxVoidItem GoToEndOfPage FN_END_OF_PAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2042,7 +1974,6 @@ SfxVoidItem GoToEndOfPageSel FN_END_OF_PAGE_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2064,7 +1995,6 @@ SfxBoolItem GoToEndOfPara FN_END_OF_PARA
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2086,7 +2016,6 @@ SfxVoidItem GoToEndOfPrevColumn FN_END_OF_PREV_COLUMN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2108,7 +2037,6 @@ SfxVoidItem GoToEndOfPrevPage FN_END_OF_PREV_PAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2130,7 +2058,6 @@ SfxVoidItem GoToEndOfPrevPageSel FN_END_OF_PREV_PAGE_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2152,7 +2079,6 @@ SfxBoolItem GotoNextIndexMark FN_NEXT_TOXMARK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2174,7 +2100,6 @@ SfxBoolItem GotoNextInputField FN_GOTO_NEXT_INPUTFLD
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2196,7 +2121,6 @@ SfxBoolItem GotoNextObject FN_GOTO_NEXT_OBJ
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2218,7 +2142,6 @@ SfxBoolItem GoToNextPara FN_NEXT_PARA
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2240,7 +2163,6 @@ SfxBoolItem GotoNextPlacemarker FN_GOTO_NEXT_MARK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2262,7 +2184,6 @@ SfxBoolItem GoToNextSentence FN_NEXT_SENT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2284,7 +2205,6 @@ SfxVoidItem GotoNextSentenceSel FN_NEXT_SENT_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2306,7 +2226,6 @@ SfxBoolItem GotoNextTableFormula FN_NEXT_TBLFML
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2328,7 +2247,6 @@ SfxBoolItem GoToNextWord FN_NEXT_WORD
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2350,7 +2268,6 @@ SfxBoolItem GotoNextWrongTableFormula FN_NEXT_TBLFML_ERR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2372,7 +2289,6 @@ SfxVoidItem GotoPage FN_NAVIGATION_PI_GOTO_PAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2394,7 +2310,6 @@ SfxBoolItem GotoPrevIndexMark FN_PREV_TOXMARK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2416,7 +2331,6 @@ SfxBoolItem GotoPrevInputField FN_GOTO_PREV_INPUTFLD
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2438,7 +2352,6 @@ SfxBoolItem GotoPrevObject FN_GOTO_PREV_OBJ
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2460,7 +2373,6 @@ SfxBoolItem GoToPrevPara FN_PREV_PARA
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2482,7 +2394,6 @@ SfxBoolItem GotoPrevPlacemarker FN_GOTO_PREV_MARK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2504,7 +2415,6 @@ SfxBoolItem GoToPrevSentence FN_PREV_SENT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2526,7 +2436,6 @@ SfxVoidItem GotoPrevSentenceSel FN_PREV_SENT_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2548,7 +2457,6 @@ SfxBoolItem GotoPrevTableFormula FN_PREV_TBLFML
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2570,7 +2478,6 @@ SfxBoolItem GoToPrevWord FN_PREV_WORD
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2592,7 +2499,6 @@ SfxBoolItem GotoPrevWrongTableFormula FN_PREV_TBLFML_ERR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2614,7 +2520,6 @@ SfxVoidItem GoToStartOfTable FN_START_TABLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2636,7 +2541,6 @@ SfxVoidItem GoToStartOfColumn FN_START_OF_COLUMN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2658,7 +2562,6 @@ SfxBoolItem GoToStartOfDoc FN_START_OF_DOCUMENT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2680,7 +2583,6 @@ SfxBoolItem GoToStartOfLine FN_START_OF_LINE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2702,7 +2604,6 @@ SfxVoidItem GoToStartOfNextColumn FN_START_OF_NEXT_COLUMN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2724,7 +2625,6 @@ SfxVoidItem GoToStartOfNextPage FN_START_OF_NEXT_PAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2746,7 +2646,6 @@ SfxVoidItem GoToStartOfNextPageSel FN_START_OF_NEXT_PAGE_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2768,7 +2667,6 @@ SfxVoidItem GoToStartOfPage FN_START_OF_PAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2790,7 +2688,6 @@ SfxVoidItem GoToStartOfPageSel FN_START_OF_PAGE_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2812,7 +2709,6 @@ SfxBoolItem GoToStartOfPara FN_START_OF_PARA
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2834,7 +2730,6 @@ SfxVoidItem GoToStartOfPrevColumn FN_START_OF_PREV_COLUMN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2856,7 +2751,6 @@ SfxVoidItem GoToStartOfPrevPage FN_START_OF_PREV_PAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2878,7 +2772,6 @@ SfxVoidItem GoToStartOfPrevPageSel FN_START_OF_PREV_PAGE_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2900,7 +2793,6 @@ SfxBoolItem GoUp FN_LINE_UP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2922,7 +2814,6 @@ SfxBoolItem ShowGraphics FN_VIEW_GRAPHIC
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -2968,7 +2859,6 @@ SfxVoidItem Grow FN_GROW_FONT_SIZE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -2990,7 +2880,6 @@ SfxBoolItem HScroll FN_HSCROLLBAR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3014,7 +2903,6 @@ SfxUInt16Item HtmlMode SID_HTML_MODE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -3060,7 +2948,6 @@ SfxVoidItem IncrementIndentValue FN_INC_INDENT_OFFSET
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3082,7 +2969,6 @@ SfxVoidItem IncrementLevel FN_NUM_BULLET_UP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
ImageRotation = TRUE;
ImageReflection = TRUE;
@@ -3106,7 +2992,6 @@ SfxVoidItem IncrementSubLevels FN_NUM_BULLET_OUTLINE_UP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
ImageRotation = TRUE;
ImageReflection = TRUE;
@@ -3152,7 +3037,6 @@ SfxVoidItem IndexMarkToIndex FN_IDX_MARK_TO_IDX
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3196,7 +3080,6 @@ SfxVoidItem InsertAuthorField FN_INSERT_FLD_AUTHOR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3306,7 +3189,6 @@ SfxVoidItem InsertColumnBreak FN_INSERT_COLUMN_BREAK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3442,7 +3324,6 @@ SfxVoidItem InsertCtrl FN_INSERT_CTRL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3466,7 +3347,6 @@ SfxVoidItem InsertDateField FN_INSERT_FLD_DATE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3488,7 +3368,6 @@ SfxVoidItem InsertEndnote FN_INSERT_ENDNOTE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3532,7 +3411,6 @@ SfxBoolItem InsertField FN_INSERT_FIELD
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
ImageRotation = TRUE;
ImageReflection = TRUE;
@@ -3557,7 +3435,6 @@ SfxBoolItem InsertFieldCtrl FN_INSERT_FIELD_CTRL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3603,7 +3480,6 @@ SfxVoidItem InsertFootnote FN_INSERT_FOOTNOTE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3625,7 +3501,6 @@ SfxVoidItem InsertFormula FN_EDIT_FORMULA
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3672,7 +3547,6 @@ SfxVoidItem InsertFrameInteract FN_INSERT_FRAME_INTERACT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxUInt16Item
@@ -3697,7 +3571,6 @@ SfxVoidItem InsertFrameInteractNoColumns FN_INSERT_FRAME_INTERACT_NOCOL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -3763,7 +3636,6 @@ SfxVoidItem InsertLinebreak FN_INSERT_LINEBREAK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3807,7 +3679,6 @@ SfxVoidItem InsertNeutralParagraph FN_NUM_BULLET_NONUM
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
ImageRotation = TRUE;
ImageReflection = TRUE;
@@ -3831,7 +3702,6 @@ SfxVoidItem InsertObjCtrl FN_INSERT_OBJ_CTRL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -3899,7 +3769,6 @@ SfxVoidItem InsertPagebreak FN_INSERT_PAGEBREAK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -3921,7 +3790,6 @@ SfxVoidItem InsertPageCountField FN_INSERT_FLD_PGCOUNT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4015,7 +3883,6 @@ SfxVoidItem InsertPara FN_INSERT_BREAK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4037,7 +3904,6 @@ SfxVoidItem InsertReferenceField FN_INSERT_REF_FIELD
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4195,7 +4061,6 @@ SfxVoidItem InsertTimeField FN_INSERT_FLD_TIME
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4217,7 +4082,6 @@ SfxVoidItem InsertTitleField FN_INSERT_FLD_TITLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4239,7 +4103,6 @@ SfxVoidItem InsertTopicField FN_INSERT_FLD_TOPIC
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4261,7 +4124,6 @@ SfxVoidItem JumpDownThisLevel FN_NUM_BULLET_NEXT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4283,7 +4145,6 @@ SfxVoidItem JumpToEndOfDoc FN_END_DOC_DIRECT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4305,7 +4166,6 @@ SfxVoidItem JumpToFooter FN_TO_FOOTER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4327,7 +4187,6 @@ SfxVoidItem JumpToFootnoteOrAnchor FN_FOOTNOTE_TO_ANCHOR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4349,7 +4208,6 @@ SfxVoidItem JumpToHeader FN_TO_HEADER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4371,7 +4229,6 @@ SfxBoolItem JumpToNextBookmark FN_NEXT_BOOKMARK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4393,7 +4250,6 @@ SfxBoolItem JumpToNextFootnote FN_NEXT_FOOTNOTE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4415,7 +4271,6 @@ SfxBoolItem JumpToNextFrame FN_CNTNT_TO_NEXT_FRAME
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4437,7 +4292,6 @@ SfxBoolItem JumpToNextRegion FN_GOTO_NEXT_REGION
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4459,7 +4313,6 @@ SfxBoolItem JumpToNextTable FN_NEXT_TABLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4481,7 +4334,6 @@ SfxBoolItem JumpToPrevBookmark FN_PREV_BOOKMARK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4503,7 +4355,6 @@ SfxBoolItem JumpToPrevFootnote FN_PREV_FOOTNOTE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4525,7 +4376,6 @@ SfxBoolItem JumpToPrevRegion FN_GOTO_PREV_REGION
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4547,7 +4397,6 @@ SfxBoolItem JumpToPrevTable FN_PREV_TABLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4569,7 +4418,6 @@ SfxVoidItem JumpToReference FN_GOTO_REFERENCE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4591,7 +4439,6 @@ SfxVoidItem JumpToStartOfDoc FN_START_DOC_DIRECT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4613,7 +4460,6 @@ SfxVoidItem JumpUpThisLevel FN_NUM_BULLET_PREV
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4635,7 +4481,6 @@ SfxVoidItem LineDownSel FN_LINE_DOWN_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4679,7 +4524,6 @@ SfxVoidItem LineUpSel FN_LINE_UP_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4745,7 +4589,6 @@ SfxBoolItem Marks FN_VIEW_MARKS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -4769,7 +4612,6 @@ SfxVoidItem MergeCells FN_TABLE_MERGE_CELLS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4791,7 +4633,6 @@ SfxVoidItem MergeDialog FN_QRY_MERGE
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4813,7 +4654,6 @@ SfxVoidItem MailMergeWizard FN_MAILMERGE_WIZARD
Container = TRUE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4835,7 +4675,6 @@ SfxBoolItem MergeTable FN_TABLE_MERGE_TABLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4857,7 +4696,6 @@ SfxVoidItem ApplyStyleHead1 FN_FORMAT_APPLY_HEAD1
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4879,7 +4717,6 @@ SfxVoidItem ApplyStyleHead2 FN_FORMAT_APPLY_HEAD2
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4901,7 +4738,6 @@ SfxVoidItem ApplyStyleHead3 FN_FORMAT_APPLY_HEAD3
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4923,7 +4759,6 @@ SfxVoidItem ApplyStyleDefault FN_FORMAT_APPLY_DEFAULT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4945,7 +4780,6 @@ SfxVoidItem ApplyStyleTextbody FN_FORMAT_APPLY_TEXTBODY
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -4967,7 +4801,6 @@ SfxBoolItem MirrorGraphicOnEvenPages FN_GRAPHIC_MIRROR_ON_EVEN_PAGES
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -4992,7 +4825,6 @@ SfxBoolItem MirrorOnEvenPages FN_FRAME_MIRROR_ON_EVEN_PAGES
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -5017,7 +4849,6 @@ SfxVoidItem MoveDown FN_NUM_BULLET_MOVEDOWN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
ImageRotation = TRUE;
ImageReflection = TRUE;
@@ -5041,7 +4872,6 @@ SfxVoidItem MoveDownSubItems FN_NUM_BULLET_OUTLINE_MOVEDOWN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
ImageRotation = TRUE;
ImageReflection = TRUE;
@@ -5065,7 +4895,6 @@ SfxVoidItem MoveUp FN_NUM_BULLET_MOVEUP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
ImageRotation = TRUE;
ImageReflection = TRUE;
@@ -5089,7 +4918,6 @@ SfxVoidItem MoveUpSubItems FN_NUM_BULLET_OUTLINE_MOVEUP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
ImageRotation = TRUE;
ImageReflection = TRUE;
@@ -5164,7 +4992,6 @@ SfxBoolItem NewGlobalDoc FN_NEW_GLOBAL_DOC
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5186,7 +5013,6 @@ SfxBoolItem NewHtmlDoc FN_NEW_HTML_DOC
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5208,7 +5034,6 @@ SfxStringItem NumberFormat FN_NUMBER_FORMAT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5232,7 +5057,6 @@ SfxVoidItem NumberFormatCurrency FN_NUMBER_CURRENCY
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5254,7 +5078,6 @@ SfxVoidItem NumberFormatDate FN_NUMBER_DATE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5276,7 +5099,6 @@ SfxVoidItem NumberFormatDecimal FN_NUMBER_TWODEC
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5298,7 +5120,6 @@ SfxVoidItem NumberFormatPercent FN_NUMBER_PERCENT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5320,7 +5141,6 @@ SfxVoidItem NumberFormatScientific FN_NUMBER_SCIENTIFIC
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5342,7 +5162,6 @@ SfxVoidItem NumberFormatStandard FN_NUMBER_STANDARD
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5364,7 +5183,6 @@ SfxVoidItem NumberFormatTime FN_NUMBER_TIME
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5386,7 +5204,6 @@ SfxBoolItem NumberingStart FN_NUMBER_NEWSTART
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
ImageRotation = TRUE;
ImageReflection = TRUE;
@@ -5412,7 +5229,6 @@ SfxBoolItem NumberOrNoNumber FN_NUM_OR_NONUM
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5436,7 +5252,6 @@ SfxVoidItem ObjectBackOne FN_FRAME_DOWN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5458,7 +5273,6 @@ SfxVoidItem ObjectForwardOne FN_FRAME_UP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5480,7 +5294,6 @@ SfxBoolItem OnlineAutoFormat FN_AUTOFORMAT_AUTO
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5504,7 +5317,6 @@ SfxVoidItem OptimizeTable FN_OPTIMIZE_TABLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5616,7 +5428,6 @@ SfxVoidItem PageDown FN_PAGEDOWN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5638,7 +5449,6 @@ SfxVoidItem PageDownSel FN_PAGEDOWN_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5707,7 +5517,6 @@ SfxStringItem PageStyleName FN_STAT_TEMPLATE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -5731,7 +5540,6 @@ SfxVoidItem PageUp FN_PAGEUP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5753,7 +5561,6 @@ SfxVoidItem PageUpSel FN_PAGEUP_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5775,7 +5582,6 @@ SfxVoidItem PreviewZoom FN_PREVIEW_ZOOM
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxUInt16Item
@@ -5800,7 +5606,6 @@ SfxBoolItem PrintLayout FN_PRINT_LAYOUT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5846,7 +5651,6 @@ SfxVoidItem Protect FN_TABLE_SET_READ_ONLY_CELLS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5868,7 +5672,6 @@ SfxBoolItem ProtectTraceChangeMode FN_REDLINE_PROTECT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -5892,7 +5695,6 @@ SfxVoidItem RefreshView FN_REFRESH_VIEW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -5914,7 +5716,6 @@ SfxVoidItem RemoveBullets FN_NUM_BULLET_OFF
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
ImageRotation = TRUE;
ImageReflection = TRUE;
@@ -5938,7 +5739,6 @@ SfxVoidItem RemoveTableOf FN_REMOVE_CUR_TOX
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6004,7 +5804,6 @@ SfxVoidItem ResetAttributes FN_FORMAT_RESET
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6026,7 +5825,6 @@ SfxVoidItem ResetTableProtection FN_TABLE_UNSET_READ_ONLY
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6048,7 +5846,6 @@ SfxBoolItem Ruler FN_RULER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -6138,7 +5935,6 @@ SfxBoolItem ScrollNavigation FN_SCROLL_NAVIGATION
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6162,7 +5958,6 @@ SfxVoidItem NavigationPopup FN_NAVIGATION_POPUP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -6184,7 +5979,6 @@ SfxVoidItem ScrollToPrevious FN_SCROLL_PREV
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -6206,7 +6000,6 @@ SfxVoidItem ScrollToNext FN_SCROLL_NEXT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -6228,7 +6021,6 @@ SfxVoidItem SelectTable FN_TABLE_SELECT_ALL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6250,7 +6042,6 @@ SfxUInt16Item SelectionMode FN_STAT_SELMODE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6274,7 +6065,6 @@ SfxVoidItem SelectText FN_SELECT_PARA
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6296,7 +6086,6 @@ SfxVoidItem SelectWord FN_SELECT_WORD
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6318,7 +6107,6 @@ SfxVoidItem SendAbstractToStarImpress FN_ABSTRACT_STARIMPRESS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6340,7 +6128,6 @@ SfxVoidItem SendOutlineToClipboard FN_OUTLINE_TO_CLIPBOARD
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6362,7 +6149,6 @@ SfxVoidItem SendOutlineToStarImpress FN_OUTLINE_TO_IMPRESS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6384,7 +6170,6 @@ SfxVoidItem SetAnchorAtChar FN_TOOL_ANCHOR_AT_CHAR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -6409,7 +6194,6 @@ SfxVoidItem SetAnchorToChar FN_TOOL_ANCHOR_CHAR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -6434,7 +6218,6 @@ SfxVoidItem SetAnchorToFrame FN_TOOL_ANCHOR_FRAME
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -6459,7 +6242,6 @@ SfxVoidItem SetAnchorToPage FN_TOOL_ANCHOR_PAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -6484,7 +6266,6 @@ SfxVoidItem SetAnchorToPara FN_TOOL_ANCHOR_PARAGRAPH
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -6509,7 +6290,6 @@ SfxVoidItem SetColumnWidth FN_TABLE_SET_COL_WIDTH
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -6531,7 +6311,6 @@ SfxVoidItem SetExtSelection FN_SET_EXT_MODE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6553,7 +6332,6 @@ SfxVoidItem SetMultiSelection FN_SET_ADD_MODE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6575,7 +6353,6 @@ SfxVoidItem SetOptimalColumnWidth FN_TABLE_ADJUST_CELLS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6597,7 +6374,6 @@ SfxVoidItem SetOptimalRowHeight FN_TABLE_OPTIMAL_HEIGHT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6619,7 +6395,6 @@ SfxVoidItem SetRowHeight FN_TABLE_SET_ROW_HEIGHT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6641,7 +6416,6 @@ SfxBoolItem ShadowCursor FN_SHADOWCURSOR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6665,7 +6439,6 @@ SfxVoidItem ShiftBackspace FN_SHIFT_BACKSPACE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6687,7 +6460,6 @@ SfxVoidItem ShowMultiplePages FN_SHOW_MULTIPLE_PAGES
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxUInt16Item
@@ -6710,7 +6482,6 @@ SfxBoolItem ShowAnnotations FN_VIEW_NOTES
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6734,7 +6505,6 @@ SfxBoolItem ShowHiddenParagraphs FN_VIEW_HIDDEN_PARA
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6758,7 +6528,6 @@ SfxBoolItem HideWhitespace FN_VIEW_HIDE_WHITESPACE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6782,7 +6551,6 @@ SfxBoolItem ShowTrackedChanges FN_REDLINE_SHOW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6806,7 +6574,6 @@ SfxVoidItem ShowTwoPages FN_SHOW_TWO_PAGES
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6828,7 +6595,6 @@ SfxVoidItem ShowSinglePage FN_SHOW_SINGLE_PAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6850,7 +6616,6 @@ SfxBoolItem ShowBookview FN_SHOW_BOOKVIEW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -6874,7 +6639,6 @@ SfxVoidItem Shrink FN_SHRINK_FONT_SIZE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6919,7 +6683,6 @@ SfxVoidItem SplitCell FN_TABLE_SPLIT_CELLS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6941,7 +6704,6 @@ SfxVoidItem SplitTable FN_TABLE_SPLIT_TABLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6963,7 +6725,6 @@ SfxVoidItem StartAutoCorrect FN_AUTO_CORRECT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -6985,7 +6746,6 @@ SfxVoidItem StartOfDocumentSel FN_START_OF_DOCUMENT_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -7007,7 +6767,6 @@ SfxVoidItem StartOfLineSel FN_START_OF_LINE_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -7029,7 +6788,6 @@ SfxVoidItem StartOfParaSel FN_START_OF_PARA_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -7051,7 +6809,6 @@ SfxVoidItem StateBookmark FN_STAT_BOOKMARK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -7073,7 +6830,6 @@ SfxStringItem StatePageNumber FN_STAT_PAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7097,7 +6853,6 @@ SfxStringItem StateZoom FN_STAT_ZOOM
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -7119,7 +6874,6 @@ SfxStringItem StateWordCount FN_STAT_WORDCOUNT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -7141,7 +6895,6 @@ SfxBoolItem SubScript FN_SET_SUB_SCRIPT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7165,7 +6918,6 @@ SfxBoolItem SuperScript FN_SET_SUPER_SCRIPT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7189,7 +6941,6 @@ SfxVoidItem SwBrwInsert FN_SBA_BRW_INSERT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -7211,7 +6962,6 @@ SfxVoidItem SwMailMerge FN_SBA_BRW_MERGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -7233,7 +6983,6 @@ SfxVoidItem SwUpdate FN_SBA_BRW_UPDATE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -7277,7 +7026,6 @@ SfxBoolItem TableBoundaries FN_VIEW_TABLEGRID
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7323,7 +7071,6 @@ SfxVoidItem TableModeFix FN_TABLE_MODE_FIX
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -7348,7 +7095,6 @@ SfxVoidItem TableModeFixProp FN_TABLE_MODE_FIX_PROP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -7373,7 +7119,6 @@ SfxVoidItem TableModeVariable FN_TABLE_MODE_VARIABLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxBoolItem
@@ -7420,7 +7165,6 @@ SfxBoolItem TableNumberRecognition FN_SET_MODOPT_TBLNUMFMT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7488,7 +7232,6 @@ SfxVoidItem ToggleAnchorType FN_TOOL_ANCHOR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxUInt16Item
@@ -7513,7 +7256,6 @@ SfxVoidItem ToggleObjectLayer FN_TOOL_HIERARCHIE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -7535,7 +7277,6 @@ SfxBoolItem UnderlineDouble FN_UNDERLINE_DOUBLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7559,7 +7300,6 @@ SfxVoidItem UnhainFrames FN_FRAME_UNCHAIN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7583,7 +7323,6 @@ SfxVoidItem UnsetCellsReadOnly FN_TABLE_UNSET_READ_ONLY_CELLS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -7627,7 +7366,6 @@ SfxVoidItem UpdateAllIndexes FN_UPDATE_TOX
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -7671,7 +7409,6 @@ SfxVoidItem UpdateCharts FN_UPDATE_CHARTS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -7693,7 +7430,6 @@ SfxVoidItem UpdateCurIndex FN_UPDATE_CUR_TOX
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7717,7 +7453,6 @@ SfxVoidItem UpdateFields FN_UPDATE_FIELDS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -7739,7 +7474,6 @@ SfxVoidItem UpdateInputFields FN_UPDATE_INPUTFIELDS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -7761,7 +7495,6 @@ SfxBoolItem ViewBounds FN_VIEW_BOUNDS
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7785,7 +7518,6 @@ SfxBoolItem VRuler FN_VLINEAL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7809,7 +7541,6 @@ SfxBoolItem VScroll FN_VSCROLLBAR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -7833,7 +7564,6 @@ SfxVoidItem WordLeftSel FN_PREV_WORD_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -7855,7 +7585,6 @@ SfxVoidItem WordRightSel FN_NEXT_WORD_SEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -7877,7 +7606,6 @@ SfxBoolItem WrapAnchorOnly FN_WRAP_ANCHOR_ONLY
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -7899,7 +7627,6 @@ SfxBoolItem WrapContour FN_FRAME_WRAP_CONTOUR
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
ImageRotation = TRUE;
ImageReflection = TRUE;
@@ -7923,7 +7650,6 @@ SfxBoolItem WrapIdeal FN_FRAME_WRAP_IDEAL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -7945,7 +7671,6 @@ SfxBoolItem WrapLeft FN_FRAME_WRAP_LEFT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -7967,7 +7692,6 @@ SfxBoolItem WrapOff FN_FRAME_NOWRAP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
ImageRotation = TRUE;
ImageReflection = TRUE;
@@ -7991,7 +7715,6 @@ SfxBoolItem WrapOn FN_FRAME_WRAP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
ImageRotation = TRUE;
ImageReflection = TRUE;
@@ -8015,7 +7738,6 @@ SfxBoolItem WrapRight FN_FRAME_WRAP_RIGHT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -8037,7 +7759,6 @@ SfxBoolItem WrapThrough FN_FRAME_WRAPTHRU
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
ImageRotation = TRUE;
ImageReflection = TRUE;
@@ -8061,7 +7782,6 @@ SfxBoolItem WrapThroughTransparent FN_FRAME_WRAPTHRU_TRANSP
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -8083,7 +7803,6 @@ SfxVoidItem InsertText FN_INSERT_STRING
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -8105,7 +7824,6 @@ SwNumRuleItem NumRule SID_ATTR_PARA_NUMRULE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -8129,7 +7847,6 @@ SfxUInt16Item OutlineLevel SID_ATTR_PARA_OUTLINE_LEVEL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -8153,7 +7870,6 @@ SfxUInt16Item NumNewStartAt FN_NUMBER_NEWSTART_AT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -8177,7 +7893,6 @@ SwFormatLineNumber LineNumber FN_FORMAT_LINENUMBER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -8201,7 +7916,6 @@ SfxUInt16Item PageNumber SID_ATTR_PARA_PAGENUM
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -8225,7 +7939,6 @@ SwRegisterItem RegisterTrue SID_ATTR_PARA_REGISTER
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -8249,7 +7962,6 @@ SfxVoidItem JumpToFootnoteArea FN_TO_FOOTNOTE_AREA
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -8271,7 +7983,6 @@ SwFormatINetFormat HyperlinkAttributes FN_TXTATR_INET
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -8295,7 +8006,6 @@ SfxVoidItem InsertGlossary FN_INSERT_GLOSSARY
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -8317,7 +8027,6 @@ SfxVoidItem NewGlossary FN_NEW_GLOSSARY
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -8339,7 +8048,6 @@ SfxVoidItem SetActGlossaryGroup FN_SET_ACT_GLOSSARY
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -8361,7 +8069,6 @@ SfxVoidItem DeleteBookmark FN_DELETE_BOOKMARK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -8383,7 +8090,6 @@ SfxVoidItem SetDropCapText FN_DROP_TEXT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -8405,7 +8111,6 @@ SfxVoidItem SetDropCapCharStyleName FN_DROP_CHAR_STYLE_NAME
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -8427,7 +8132,6 @@ SfxBoolItem SelectTextMode FN_READONLY_SELECTION_MODE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -8451,7 +8155,6 @@ SfxBoolItem InsertDBField FN_INSERT_DBFIELD
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -8473,7 +8176,6 @@ SfxBoolItem JumpToNextCell FN_GOTO_NEXT_CELL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -8495,7 +8197,6 @@ SfxBoolItem JumpToPrevCell FN_GOTO_PREV_CELL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -8516,7 +8217,6 @@ SfxBoolItem InsertFieldDataOnly FN_INSERT_FIELD_DATA_ONLY()
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
ImageRotation = TRUE;
ImageReflection = TRUE;
@@ -8541,7 +8241,6 @@ SvxBrushItem TableRowBackground SID_ATTR_BRUSH_ROW
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -8565,7 +8264,6 @@ SvxBrushItem TableBackground SID_ATTR_BRUSH_TABLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -8589,7 +8287,6 @@ SfxBoolItem RowSplit FN_TABLE_ROW_SPLIT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -8679,7 +8376,6 @@ SfxVoidItem DeleteTable FN_TABLE_DELETE_TABLE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -8701,7 +8397,6 @@ SfxVoidItem EntireCell FN_TABLE_SELECT_CELL
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -8776,7 +8471,6 @@ SfxVoidItem HeadingRowsRepeat FN_TABLE_HEADLINE_REPEAT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -8867,7 +8561,6 @@ SfxVoidItem ContinueNumbering FN_NUM_CONTINUE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -8888,7 +8581,6 @@ SfxBoolItem SelectionModeDefault FN_SELECTION_MODE_DEFAULT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
/* config: */
@@ -8911,7 +8603,6 @@ SfxVoidItem ReplyComment FN_REPLY
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -8933,7 +8624,6 @@ SfxVoidItem DeleteComment FN_DELETE_COMMENT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -8954,7 +8644,6 @@ SfxVoidItem DeleteAuthor FN_DELETE_NOTE_AUTHOR ( SfxStringItem Author FN_DELETE_
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxStringItem
@@ -8979,7 +8668,6 @@ SfxVoidItem DeleteAllNotes FN_DELETE_ALL_NOTES
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -9001,7 +8689,6 @@ SfxVoidItem FormatAllNotes FN_FORMAT_ALL_NOTES
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -9023,7 +8710,6 @@ SfxVoidItem HideNote FN_HIDE_NOTE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -9044,7 +8730,6 @@ SfxVoidItem HideAuthor FN_HIDE_NOTE_AUTHOR ( SfxStringItem Author FN_HIDE_NOTE_A
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxStringItem
@@ -9068,7 +8753,6 @@ SvxViewLayoutItem ViewLayout SID_ATTR_VIEWLAYOUT
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -9090,7 +8774,6 @@ SfxVoidItem HideAllNotes FN_HIDE_ALL_NOTES
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = FALSE,
@@ -9111,7 +8794,6 @@ SfxBoolItem SelectionModeBlock FN_SELECTION_MODE_BLOCK
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -9135,7 +8817,6 @@ SfxBoolItem SpellingAndGrammarDialog FN_SPELL_GRAMMAR_DIALOG
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -9343,7 +9024,6 @@ SfxVoidItem OpenFromWriter FN_OPEN_FILE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxStringItem
@@ -9368,7 +9048,6 @@ SfxInt16Item PageColumnType SID_ATTR_PAGE_COLUMN
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = TRUE,
@@ -9392,7 +9071,6 @@ SvxLongULSpaceItem SwPageULMargin SID_ATTR_PAGE_ULSPACE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -9416,7 +9094,6 @@ SvxLongLRSpaceItem SwPageLRMargin SID_ATTR_PAGE_LRSPACE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
Readonly = FALSE,
@@ -9440,7 +9117,6 @@ SfxVoidItem AddTextBox FN_ADD_TEXT_BOX
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -9462,7 +9138,6 @@ SfxVoidItem RemoveTextBox FN_REMOVE_TEXT_BOX
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* config: */
AccelConfig = TRUE,
@@ -9506,7 +9181,6 @@ SfxVoidItem JumpToSpecificPage SID_JUMP_TO_SPECIFIC_PAGE
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
- Synchron;
/* status: */
SlotType = SfxUInt16Item