Kaydet (Commit) 16431492 authored tarafından Noel Grandin's avatar Noel Grandin Kaydeden (comit) Noel Grandin

remove unused Cachable keyword from SDI files

Change-Id: I60c423b799f34f79f58bc39cf7ea616ec4f5d16a
Reviewed-on: https://gerrit.libreoffice.org/22096Reviewed-by: 's avatarNoel Grandin <noelgrandin@gmail.com>
Tested-by: 's avatarNoel Grandin <noelgrandin@gmail.com>
üst 3ffa9802
...@@ -43,7 +43,6 @@ struct SvGlobalHashNames ...@@ -43,7 +43,6 @@ struct SvGlobalHashNames
SvStringHashEntryRef MM_Get; SvStringHashEntryRef MM_Get;
SvStringHashEntryRef MM_Set; SvStringHashEntryRef MM_Set;
SvStringHashEntryRef MM_SlotId; SvStringHashEntryRef MM_SlotId;
SvStringHashEntryRef MM_Cachable;
SvStringHashEntryRef MM_Volatile; SvStringHashEntryRef MM_Volatile;
SvStringHashEntryRef MM_Toggle; SvStringHashEntryRef MM_Toggle;
SvStringHashEntryRef MM_AutoUpdate; SvStringHashEntryRef MM_AutoUpdate;
...@@ -147,7 +146,6 @@ HASH_INLINE(shell) ...@@ -147,7 +146,6 @@ HASH_INLINE(shell)
HASH_INLINE(Get) HASH_INLINE(Get)
HASH_INLINE(Set) HASH_INLINE(Set)
HASH_INLINE(SlotId) HASH_INLINE(SlotId)
HASH_INLINE(Cachable)
HASH_INLINE(Volatile) HASH_INLINE(Volatile)
HASH_INLINE(Toggle) HASH_INLINE(Toggle)
HASH_INLINE(AutoUpdate) HASH_INLINE(AutoUpdate)
......
...@@ -36,7 +36,6 @@ class SvMetaSlot : public SvMetaAttribute ...@@ -36,7 +36,6 @@ class SvMetaSlot : public SvMetaAttribute
SvBOOL aGet; SvBOOL aGet;
SvBOOL aSet; SvBOOL aSet;
SvBOOL aCachable; // exclusive
SvBOOL aVolatile; SvBOOL aVolatile;
SvBOOL aToggle; SvBOOL aToggle;
SvBOOL aAutoUpdate; SvBOOL aAutoUpdate;
...@@ -76,17 +75,9 @@ class SvMetaSlot : public SvMetaAttribute ...@@ -76,17 +75,9 @@ class SvMetaSlot : public SvMetaAttribute
void SetEnumValue(SvMetaEnumValue *p) void SetEnumValue(SvMetaEnumValue *p)
{ pEnumValue = p; } { pEnumValue = p; }
protected: protected:
void SetCachable( bool bSet )
{
aCachable = bSet;
if( bSet )
aVolatile = false;
}
void SetVolatile( bool bSet ) void SetVolatile( bool bSet )
{ {
aVolatile = bSet; aVolatile = bSet;
if( bSet )
aCachable = false;
} }
void SetToggle( bool bSet ) void SetToggle( bool bSet )
{ {
...@@ -164,7 +155,6 @@ public: ...@@ -164,7 +155,6 @@ public:
const OString& GetDefault() const; const OString& GetDefault() const;
const OString& GetDisableFlags() const; const OString& GetDisableFlags() const;
bool GetPseudoSlots() const; bool GetPseudoSlots() const;
bool GetCachable() const;
bool GetVolatile() const; bool GetVolatile() const;
bool GetToggle() const; bool GetToggle() const;
bool GetAutoUpdate() const; bool GetAutoUpdate() const;
......
...@@ -34,8 +34,7 @@ SvMetaObject *SvMetaSlot::MakeClone() const ...@@ -34,8 +34,7 @@ SvMetaObject *SvMetaSlot::MakeClone() const
} }
SvMetaSlot::SvMetaSlot() SvMetaSlot::SvMetaSlot()
: aCachable( true, false ) : aSynchron( true, false )
, aSynchron( true, false )
, aRecordPerSet( true, false ) , aRecordPerSet( true, false )
, aRecordAbsolute( false, false ) , aRecordAbsolute( false, false )
, pLinkedSlot(nullptr) , pLinkedSlot(nullptr)
...@@ -47,7 +46,6 @@ SvMetaSlot::SvMetaSlot() ...@@ -47,7 +46,6 @@ SvMetaSlot::SvMetaSlot()
SvMetaSlot::SvMetaSlot( SvMetaType * pType ) SvMetaSlot::SvMetaSlot( SvMetaType * pType )
: SvMetaAttribute( pType ) : SvMetaAttribute( pType )
, aCachable( true, false )
, aSynchron( true, false ) , aSynchron( true, false )
, aRecordPerSet( true, false ) , aRecordPerSet( true, false )
, aRecordAbsolute( false, false ) , aRecordAbsolute( false, false )
...@@ -133,17 +131,10 @@ bool SvMetaSlot::GetPseudoSlots() const ...@@ -133,17 +131,10 @@ bool SvMetaSlot::GetPseudoSlots() const
if( aPseudoSlots.IsSet() || !GetRef() ) return aPseudoSlots; if( aPseudoSlots.IsSet() || !GetRef() ) return aPseudoSlots;
return static_cast<SvMetaSlot *>(GetRef())->GetPseudoSlots(); return static_cast<SvMetaSlot *>(GetRef())->GetPseudoSlots();
} }
bool SvMetaSlot::GetCachable() const
{
// Cachable and Volatile are exclusive
if( !GetRef() || aCachable.IsSet() || aVolatile.IsSet() )
return aCachable;
return static_cast<SvMetaSlot *>(GetRef())->GetCachable();
}
bool SvMetaSlot::GetVolatile() const bool SvMetaSlot::GetVolatile() const
{ {
// Cachable and Volatile are exclusive // Cachable and Volatile are exclusive
if( !GetRef() || aVolatile.IsSet() || aCachable.IsSet() ) if( !GetRef() || aVolatile.IsSet() )
return aVolatile; return aVolatile;
return static_cast<SvMetaSlot *>(GetRef())->GetVolatile(); return static_cast<SvMetaSlot *>(GetRef())->GetVolatile();
} }
...@@ -295,8 +286,6 @@ void SvMetaSlot::ReadAttributesSvIdl( SvIdlDataBase & rBase, ...@@ -295,8 +286,6 @@ void SvMetaSlot::ReadAttributesSvIdl( SvIdlDataBase & rBase,
rInStm.GetToken().GetColumn() ); rInStm.GetToken().GetColumn() );
} }
if( aCachable.ReadSvIdl( SvHash_Cachable(), rInStm ) )
SetCachable( aCachable ), bOk = true;
if( aVolatile.ReadSvIdl( SvHash_Volatile(), rInStm ) ) if( aVolatile.ReadSvIdl( SvHash_Volatile(), rInStm ) )
SetVolatile( aVolatile ), bOk = true; SetVolatile( aVolatile ), bOk = true;
if( aToggle.ReadSvIdl( SvHash_Toggle(), rInStm ) ) if( aToggle.ReadSvIdl( SvHash_Toggle(), rInStm ) )
...@@ -826,8 +815,6 @@ void SvMetaSlot::WriteSlot( const OString& rShellName, sal_uInt16 nCount, ...@@ -826,8 +815,6 @@ void SvMetaSlot::WriteSlot( const OString& rShellName, sal_uInt16 nCount,
WriteTab( rOutStm, 4 ); WriteTab( rOutStm, 4 );
// write flags // write flags
if( GetCachable() )
rOutStm.WriteCharPtr( MakeSlotName( SvHash_Cachable() ).getStr() ).WriteChar( '|' );
if( GetVolatile() ) if( GetVolatile() )
rOutStm.WriteCharPtr( MakeSlotName( SvHash_Volatile() ).getStr() ).WriteChar( '|' ); rOutStm.WriteCharPtr( MakeSlotName( SvHash_Volatile() ).getStr() ).WriteChar( '|' );
if( GetToggle() ) if( GetToggle() )
......
...@@ -71,7 +71,6 @@ SvGlobalHashNames::SvGlobalHashNames() ...@@ -71,7 +71,6 @@ SvGlobalHashNames::SvGlobalHashNames()
, MM_Get( INS( "Get" ) ) , MM_Get( INS( "Get" ) )
, MM_Set( INS( "Set" ) ) , MM_Set( INS( "Set" ) )
, MM_SlotId( INS( "SlotId" ) ) , MM_SlotId( INS( "SlotId" ) )
, MM_Cachable( INS( "Cachable" ) )
, MM_Toggle( INS( "Toggle" ) ) , MM_Toggle( INS( "Toggle" ) )
, MM_AutoUpdate( INS( "AutoUpdate" ) ) , MM_AutoUpdate( INS( "AutoUpdate" ) )
, MM_Synchron( INS( "Synchron" ) ) , MM_Synchron( INS( "Synchron" ) )
......
...@@ -28,9 +28,8 @@ ...@@ -28,9 +28,8 @@
#include <functional> #include <functional>
enum class SfxSlotMode { enum class SfxSlotMode {
NONE = 0x0000L, // exclusiv to VOLATILE, default NONE = 0x0000L, // default
CACHABLE = 0x0001L, // exclusiv to VOLATILE, default VOLATILE = 0x0002L, // per Timer every 2s get new,
VOLATILE = 0x0002L, // per Timer every 2s get new, exclusive to CACHABLE
TOGGLE = 0x0004L, // inverted for Execute old value TOGGLE = 0x0004L, // inverted for Execute old value
AUTOUPDATE = 0x0008L, // invalidated the status automatically after execute AUTOUPDATE = 0x0008L, // invalidated the status automatically after execute
...@@ -43,7 +42,7 @@ enum class SfxSlotMode { ...@@ -43,7 +42,7 @@ enum class SfxSlotMode {
RECORDPERSET = 0x0400L, // The whole Set is a Statement, default RECORDPERSET = 0x0400L, // The whole Set is a Statement, default
RECORDMANUAL = 0x0800L, // Recording by the application developer is default RECORDMANUAL = 0x0800L, // Recording by the application developer is default
RECORDABSOLUTE = 0x1000000L, // Recording with absolute Target RECORDABSOLUTE = 0x1000000L, // Recording with absolute Target
STANDARD = 0x00411L, // CACHABLE | SYNCHRON | RECORDPERSET; STANDARD = 0x00410L, // SYNCHRON | RECORDPERSET;
PROPGET = 0x1000L, // get property PROPGET = 0x1000L, // get property
PROPSET = 0x2000L, // set property, exclusive to METHOD PROPSET = 0x2000L, // set property, exclusive to METHOD
...@@ -64,7 +63,7 @@ enum class SfxSlotMode { ...@@ -64,7 +63,7 @@ enum class SfxSlotMode {
namespace o3tl namespace o3tl
{ {
template<> struct typed_flags<SfxSlotMode> : is_typed_flags<SfxSlotMode, 0x1ffffbfL> {}; template<> struct typed_flags<SfxSlotMode> : is_typed_flags<SfxSlotMode, 0x1ffffbeL> {};
} }
......
...@@ -139,7 +139,7 @@ interface CellSelection ...@@ -139,7 +139,7 @@ interface CellSelection
ExecMethod = ExecuteEdit ; ExecMethod = ExecuteEdit ;
StateMethod = GetBlockState ; StateMethod = GetBlockState ;
GroupId = GID_EDIT ; //FS GroupId = GID_EDIT ; //FS
Cachable , HasDialog ; HasDialog ;
MenuConfig , AccelConfig ; MenuConfig , AccelConfig ;
] ]
SID_DELETE_CONTENTS [ ExecMethod = ExecuteEdit; StateMethod = GetBlockState; ] SID_DELETE_CONTENTS [ ExecMethod = ExecuteEdit; StateMethod = GetBlockState; ]
...@@ -251,28 +251,24 @@ interface CellMovement ...@@ -251,28 +251,24 @@ interface CellMovement
[ [
ExecMethod = ExecuteMove ; ExecMethod = ExecuteMove ;
StateMethod = GetStateCursor ; StateMethod = GetStateCursor ;
Cachable ;
] ]
SID_PREV_TABLE SID_PREV_TABLE
[ [
ExecMethod = ExecuteMove ; ExecMethod = ExecuteMove ;
StateMethod = GetStateCursor ; StateMethod = GetStateCursor ;
Cachable ;
] ]
SID_NEXT_TABLE_SEL SID_NEXT_TABLE_SEL
[ [
ExecMethod = ExecuteMove ; ExecMethod = ExecuteMove ;
StateMethod = GetStateCursor ; StateMethod = GetStateCursor ;
Cachable ;
] ]
SID_PREV_TABLE_SEL SID_PREV_TABLE_SEL
[ [
ExecMethod = ExecuteMove ; ExecMethod = ExecuteMove ;
StateMethod = GetStateCursor ; StateMethod = GetStateCursor ;
Cachable ;
] ]
SfxVoidItem GoDown SID_CURSORDOWN SfxVoidItem GoDown SID_CURSORDOWN
...@@ -283,7 +279,6 @@ interface CellMovement ...@@ -283,7 +279,6 @@ interface CellMovement
[ [
ExecMethod = ExecuteCursor ; ExecMethod = ExecuteCursor ;
StateMethod = GetStateCursor ; StateMethod = GetStateCursor ;
Cachable ;
] ]
SfxVoidItem GoDownSel SID_CURSORDOWN_SEL SfxVoidItem GoDownSel SID_CURSORDOWN_SEL
...@@ -294,7 +289,6 @@ interface CellMovement ...@@ -294,7 +289,6 @@ interface CellMovement
Export = FALSE ; Export = FALSE ;
ExecMethod = ExecuteCursorSel ; ExecMethod = ExecuteCursorSel ;
StateMethod = GetStateCursor ; StateMethod = GetStateCursor ;
Cachable ;
] ]
SID_CURSORBLKDOWN [ ExecMethod = ExecuteCursor; StateMethod = GetStateCursor; ] SID_CURSORBLKDOWN [ ExecMethod = ExecuteCursor; StateMethod = GetStateCursor; ]
SID_CURSORBLKDOWN_SEL [ ExecMethod = ExecuteCursorSel; StateMethod = GetStateCursor; ] SID_CURSORBLKDOWN_SEL [ ExecMethod = ExecuteCursorSel; StateMethod = GetStateCursor; ]
...@@ -307,7 +301,6 @@ interface CellMovement ...@@ -307,7 +301,6 @@ interface CellMovement
[ [
ExecMethod = ExecuteCursor ; ExecMethod = ExecuteCursor ;
StateMethod = GetStateCursor ; StateMethod = GetStateCursor ;
Cachable ;
] ]
SID_CURSORUP_SEL [ ExecMethod = ExecuteCursorSel; StateMethod = GetStateCursor; ] SID_CURSORUP_SEL [ ExecMethod = ExecuteCursorSel; StateMethod = GetStateCursor; ]
SID_CURSORBLKUP [ ExecMethod = ExecuteCursor; StateMethod = GetStateCursor; ] SID_CURSORBLKUP [ ExecMethod = ExecuteCursor; StateMethod = GetStateCursor; ]
...@@ -321,7 +314,6 @@ interface CellMovement ...@@ -321,7 +314,6 @@ interface CellMovement
[ [
ExecMethod = ExecuteCursor ; ExecMethod = ExecuteCursor ;
StateMethod = GetStateCursor ; StateMethod = GetStateCursor ;
Cachable ;
] ]
SID_CURSORLEFT_SEL [ ExecMethod = ExecuteCursorSel; StateMethod = GetStateCursor; ] SID_CURSORLEFT_SEL [ ExecMethod = ExecuteCursorSel; StateMethod = GetStateCursor; ]
SID_CURSORBLKLEFT [ ExecMethod = ExecuteCursor; StateMethod = GetStateCursor; ] SID_CURSORBLKLEFT [ ExecMethod = ExecuteCursor; StateMethod = GetStateCursor; ]
...@@ -335,7 +327,6 @@ interface CellMovement ...@@ -335,7 +327,6 @@ interface CellMovement
[ [
ExecMethod = ExecuteCursor ; ExecMethod = ExecuteCursor ;
StateMethod = GetStateCursor ; StateMethod = GetStateCursor ;
Cachable ;
] ]
SID_CURSORRIGHT_SEL [ ExecMethod = ExecuteCursorSel; StateMethod = GetStateCursor; ] SID_CURSORRIGHT_SEL [ ExecMethod = ExecuteCursorSel; StateMethod = GetStateCursor; ]
...@@ -354,7 +345,6 @@ interface CellMovement ...@@ -354,7 +345,6 @@ interface CellMovement
[ [
ExecMethod = ExecuteCursor ; ExecMethod = ExecuteCursor ;
StateMethod = GetStateCursor ; StateMethod = GetStateCursor ;
Cachable ;
] ]
SID_CURSORPAGEDOWN_SEL [ ExecMethod = ExecuteCursorSel; StateMethod = GetStateCursor; ] SID_CURSORPAGEDOWN_SEL [ ExecMethod = ExecuteCursorSel; StateMethod = GetStateCursor; ]
...@@ -366,7 +356,6 @@ interface CellMovement ...@@ -366,7 +356,6 @@ interface CellMovement
[ [
ExecMethod = ExecuteCursor ; ExecMethod = ExecuteCursor ;
StateMethod = GetStateCursor ; StateMethod = GetStateCursor ;
Cachable ;
] ]
SID_CURSORPAGEUP_SEL [ ExecMethod = ExecuteCursorSel; StateMethod = GetStateCursor; ] SID_CURSORPAGEUP_SEL [ ExecMethod = ExecuteCursorSel; StateMethod = GetStateCursor; ]
SID_CURSORPAGELEFT_ [ ExecMethod = ExecuteCursor; StateMethod = GetStateCursor; ] SID_CURSORPAGELEFT_ [ ExecMethod = ExecuteCursor; StateMethod = GetStateCursor; ]
...@@ -382,7 +371,6 @@ interface CellMovement ...@@ -382,7 +371,6 @@ interface CellMovement
[ [
ExecMethod = ExecutePage ; ExecMethod = ExecutePage ;
StateMethod = GetStateCursor ; StateMethod = GetStateCursor ;
Cachable ;
] ]
SID_CURSORENDOFFILE_SEL [ ExecMethod = ExecutePageSel; StateMethod = GetStateCursor; ] SID_CURSORENDOFFILE_SEL [ ExecMethod = ExecutePageSel; StateMethod = GetStateCursor; ]
...@@ -393,7 +381,6 @@ interface CellMovement ...@@ -393,7 +381,6 @@ interface CellMovement
[ [
ExecMethod = ExecutePage ; ExecMethod = ExecutePage ;
StateMethod = GetStateCursor ; StateMethod = GetStateCursor ;
Cachable ;
] ]
SID_CURSORTOPOFSCREEN [ ExecMethod = ExecuteMove; StateMethod = GetStateCursor; ] SID_CURSORTOPOFSCREEN [ ExecMethod = ExecuteMove; StateMethod = GetStateCursor; ]
SID_CURSORENDOFSCREEN [ ExecMethod = ExecuteMove; StateMethod = GetStateCursor; ] SID_CURSORENDOFSCREEN [ ExecMethod = ExecuteMove; StateMethod = GetStateCursor; ]
...@@ -405,7 +392,6 @@ interface CellMovement ...@@ -405,7 +392,6 @@ interface CellMovement
[ [
ExecMethod = ExecutePage ; ExecMethod = ExecutePage ;
StateMethod = GetStateCursor ; StateMethod = GetStateCursor ;
Cachable ;
] ]
SID_CURSOREND [ ExecMethod = ExecutePage; StateMethod = GetStateCursor; ] SID_CURSOREND [ ExecMethod = ExecutePage; StateMethod = GetStateCursor; ]
......
...@@ -127,7 +127,6 @@ interface TableDraw ...@@ -127,7 +127,6 @@ interface TableDraw
ExecMethod = ExecDrawFunc ; ExecMethod = ExecDrawFunc ;
StateMethod = GetDrawFuncState ; StateMethod = GetDrawFuncState ;
GroupId = GID_FORMAT ; GroupId = GID_FORMAT ;
FastCall , Cachable ;
ToolBoxConfig ; ToolBoxConfig ;
] ]
SID_OBJECT_ALIGN_LEFT [ ExecMethod = ExecDrawFunc; StateMethod = GetDrawFuncState; Export = FALSE; ] SID_OBJECT_ALIGN_LEFT [ ExecMethod = ExecDrawFunc; StateMethod = GetDrawFuncState; Export = FALSE; ]
...@@ -166,7 +165,6 @@ interface TableDraw ...@@ -166,7 +165,6 @@ interface TableDraw
StateMethod = GetDrawFuncState ; StateMethod = GetDrawFuncState ;
Export = FALSE ; Export = FALSE ;
GroupId = GID_EDIT ; GroupId = GID_EDIT ;
FastCall , Cachable ;
ToolBoxConfig , MenuConfig , AccelConfig ; ToolBoxConfig , MenuConfig , AccelConfig ;
] ]
*/ */
...@@ -185,7 +183,6 @@ interface TableDraw ...@@ -185,7 +183,6 @@ interface TableDraw
StateMethod = GetDrawFuncState ; StateMethod = GetDrawFuncState ;
Export = FALSE ; Export = FALSE ;
GroupId = GID_FORMAT ; GroupId = GID_FORMAT ;
Cachable ;
MenuConfig ; //FS MenuConfig ; //FS
] ]
*/ */
......
...@@ -27,7 +27,6 @@ interface TableText ...@@ -27,7 +27,6 @@ interface TableText
StateMethod = GetState ; StateMethod = GetState ;
Export = FALSE; Export = FALSE;
GroupId = GID_EDIT ; GroupId = GID_EDIT ;
Cachable ;
] ]
SID_CUT [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ] SID_CUT [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ]
SID_COPY [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ] SID_COPY [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ]
......
...@@ -42,7 +42,6 @@ interface TablePrintPreview ...@@ -42,7 +42,6 @@ interface TablePrintPreview
StateMethod = GetState ; StateMethod = GetState ;
Export = FALSE; Export = FALSE;
GroupId = GID_INTERN ; GroupId = GID_INTERN ;
Cachable ;
] ]
SfxVoidItem GoDownBlock SID_CURSORPAGEDOWN SfxVoidItem GoDownBlock SID_CURSORPAGEDOWN
...@@ -54,7 +53,6 @@ interface TablePrintPreview ...@@ -54,7 +53,6 @@ interface TablePrintPreview
StateMethod = GetState ; StateMethod = GetState ;
Export = FALSE; Export = FALSE;
GroupId = GID_INTERN ; GroupId = GID_INTERN ;
Cachable ;
] ]
SID_CURSORHOME [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ] SID_CURSORHOME [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ]
...@@ -69,7 +67,6 @@ interface TablePrintPreview ...@@ -69,7 +67,6 @@ interface TablePrintPreview
StateMethod = GetState ; StateMethod = GetState ;
Export = FALSE; Export = FALSE;
GroupId = GID_INTERN ; GroupId = GID_INTERN ;
Cachable ;
] ]
SfxVoidItem GoUp SID_CURSORUP SfxVoidItem GoUp SID_CURSORUP
( (
...@@ -80,7 +77,6 @@ interface TablePrintPreview ...@@ -80,7 +77,6 @@ interface TablePrintPreview
StateMethod = GetState ; StateMethod = GetState ;
Export = FALSE; Export = FALSE;
GroupId = GID_INTERN ; GroupId = GID_INTERN ;
Cachable ;
] ]
SfxVoidItem GoLeft SID_CURSORLEFT SfxVoidItem GoLeft SID_CURSORLEFT
( (
...@@ -91,7 +87,6 @@ interface TablePrintPreview ...@@ -91,7 +87,6 @@ interface TablePrintPreview
StateMethod = GetState ; StateMethod = GetState ;
Export = FALSE; Export = FALSE;
GroupId = GID_INTERN ; GroupId = GID_INTERN ;
Cachable ;
] ]
SfxVoidItem GoRight SID_CURSORRIGHT SfxVoidItem GoRight SID_CURSORRIGHT
...@@ -103,7 +98,6 @@ interface TablePrintPreview ...@@ -103,7 +98,6 @@ interface TablePrintPreview
StateMethod = GetState ; StateMethod = GetState ;
Export = FALSE; Export = FALSE;
GroupId = GID_INTERN ; GroupId = GID_INTERN ;
Cachable ;
] ]
SID_PREV_TABLE SID_PREV_TABLE
...@@ -112,7 +106,6 @@ interface TablePrintPreview ...@@ -112,7 +106,6 @@ interface TablePrintPreview
StateMethod = GetState ; StateMethod = GetState ;
Export = FALSE; Export = FALSE;
GroupId = GID_INTERN ; GroupId = GID_INTERN ;
Cachable ;
] ]
SID_NEXT_TABLE SID_NEXT_TABLE
...@@ -121,7 +114,6 @@ interface TablePrintPreview ...@@ -121,7 +114,6 @@ interface TablePrintPreview
StateMethod = GetState ; StateMethod = GetState ;
Export = FALSE; Export = FALSE;
GroupId = GID_INTERN ; GroupId = GID_INTERN ;
Cachable ;
] ]
SfxVoidItem GoToStart SID_CURSORTOPOFFILE () SfxVoidItem GoToStart SID_CURSORTOPOFFILE ()
...@@ -130,7 +122,6 @@ interface TablePrintPreview ...@@ -130,7 +122,6 @@ interface TablePrintPreview
StateMethod = GetState ; StateMethod = GetState ;
Export = FALSE; Export = FALSE;
GroupId = GID_INTERN ; GroupId = GID_INTERN ;
Cachable ;
] ]
SfxVoidItem GoToEndOfData SID_CURSORENDOFFILE () SfxVoidItem GoToEndOfData SID_CURSORENDOFFILE ()
...@@ -139,7 +130,6 @@ interface TablePrintPreview ...@@ -139,7 +130,6 @@ interface TablePrintPreview
StateMethod = GetState ; StateMethod = GetState ;
Export = FALSE; Export = FALSE;
GroupId = GID_INTERN ; GroupId = GID_INTERN ;
Cachable ;
] ]
SID_PREVIEW_ZOOMIN [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ] SID_PREVIEW_ZOOMIN [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ]
SID_PREVIEW_ZOOMOUT [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ] SID_PREVIEW_ZOOMOUT [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ]
......
This diff is collapsed.
...@@ -80,7 +80,7 @@ interface BaseSelection ...@@ -80,7 +80,7 @@ interface BaseSelection
[ [
ExecMethod = ExecDrawIns ; ExecMethod = ExecDrawIns ;
StateMethod = GetDrawInsState ; StateMethod = GetDrawInsState ;
Cachable , Asynchron ; Asynchron ;
] ]
SID_PIVOT_CREATE [ ExecMethod = ExecuteSbx; StateMethod = GetSbxState; ] SID_PIVOT_CREATE [ ExecMethod = ExecuteSbx; StateMethod = GetSbxState; ]
......
...@@ -48,7 +48,6 @@ interface DrawDocument ...@@ -48,7 +48,6 @@ interface DrawDocument
ExecMethod = Execute ; ExecMethod = Execute ;
StateMethod = GetState ; StateMethod = GetState ;
GroupId = GID_DOCUMENT ; GroupId = GID_DOCUMENT ;
Cachable ;
] ]
// ? // ?
FID_SEARCH_ON // ole : ?, status : ? FID_SEARCH_ON // ole : ?, status : ?
...@@ -56,7 +55,6 @@ interface DrawDocument ...@@ -56,7 +55,6 @@ interface DrawDocument
ExecMethod = Execute ; ExecMethod = Execute ;
StateMethod = GetState ; StateMethod = GetState ;
GroupId = GID_DOCUMENT ; GroupId = GID_DOCUMENT ;
Cachable ;
] ]
// ? // ?
FID_SEARCH_OFF // ole : ?, status : ? FID_SEARCH_OFF // ole : ?, status : ?
...@@ -64,7 +62,6 @@ interface DrawDocument ...@@ -64,7 +62,6 @@ interface DrawDocument
ExecMethod = Execute ; ExecMethod = Execute ;
StateMethod = GetState ; StateMethod = GetState ;
GroupId = GID_DOCUMENT ; GroupId = GID_DOCUMENT ;
Cachable ;
] ]
SID_GET_COLORLIST SID_GET_COLORLIST
......
...@@ -297,7 +297,7 @@ interface DrawView ...@@ -297,7 +297,7 @@ interface DrawView
ExecMethod = FuTemporary ; ExecMethod = FuTemporary ;
StateMethod = GetMenuState ; StateMethod = GetMenuState ;
GroupId = GID_DOCUMENT ; GroupId = GID_DOCUMENT ;
Cachable , HasDialog , Export , HasDialog , Export ,
MenuConfig , AccelConfig , ToolBoxConfig ; MenuConfig , AccelConfig , ToolBoxConfig ;
] ]
SID_CHARMAP // ole : no, status : ? SID_CHARMAP // ole : no, status : ?
...@@ -352,7 +352,7 @@ interface DrawView ...@@ -352,7 +352,7 @@ interface DrawView
ExecMethod = FuTemporary ; ExecMethod = FuTemporary ;
StateMethod = GetMenuState ; StateMethod = GetMenuState ;
GroupId = GID_INSERT ; GroupId = GID_INSERT ;
Cachable , HasDialog , Export , Asynchron , HasDialog , Export , Asynchron ,
MenuConfig , AccelConfig , ToolBoxConfig ; MenuConfig , AccelConfig , ToolBoxConfig ;
] ]
SID_MANAGE_LINKS // ole : no, status : ? SID_MANAGE_LINKS // ole : no, status : ?
...@@ -376,7 +376,7 @@ interface DrawView ...@@ -376,7 +376,7 @@ interface DrawView
ExecMethod = FuTemporary ; ExecMethod = FuTemporary ;
StateMethod = GetMenuState ; StateMethod = GetMenuState ;
GroupId = GID_DOCUMENT ; GroupId = GID_DOCUMENT ;
Cachable , HasDialog , Export , Asynchron , HasDialog , Export , Asynchron ,
MenuConfig , AccelConfig , ToolBoxConfig ; MenuConfig , AccelConfig , ToolBoxConfig ;
] ]
SID_BMPMASK // ole : yes, status : ? SID_BMPMASK // ole : yes, status : ?
...@@ -681,7 +681,7 @@ interface DrawView ...@@ -681,7 +681,7 @@ interface DrawView
ExecMethod = FuSupport ; ExecMethod = FuSupport ;
StateMethod = GetMenuState ; StateMethod = GetMenuState ;
GroupId = GID_DOCUMENT ; GroupId = GID_DOCUMENT ;
Cachable , Asynchron , Asynchron ,
MenuConfig , AccelConfig , ToolBoxConfig ; MenuConfig , AccelConfig , ToolBoxConfig ;
] ]
SID_CHANGEBEZIER // ole : no, status : ? SID_CHANGEBEZIER // ole : no, status : ?
...@@ -794,7 +794,7 @@ interface DrawView ...@@ -794,7 +794,7 @@ interface DrawView
ExecMethod = FuPermanent ; ExecMethod = FuPermanent ;
StateMethod = GetMenuState ; StateMethod = GetMenuState ;
GroupId = GID_DOCUMENT ; GroupId = GID_DOCUMENT ;
Cachable , AutoUpdate , AutoUpdate ,
MenuConfig , AccelConfig , ToolBoxConfig ; MenuConfig , AccelConfig , ToolBoxConfig ;
] ]
SID_OBJECT_SHEAR // ole : no, status : ? SID_OBJECT_SHEAR // ole : no, status : ?
...@@ -1258,7 +1258,7 @@ interface DrawView ...@@ -1258,7 +1258,7 @@ interface DrawView
[ [
StateMethod = GetMenuState ; StateMethod = GetMenuState ;
GroupId = GID_DOCUMENT ; GroupId = GID_DOCUMENT ;
Cachable , Export ; Export ;
PseudoSlots = FALSE ; PseudoSlots = FALSE ;
ToolBoxConfig ; ToolBoxConfig ;
MenuConfig = TRUE; MenuConfig = TRUE;
...@@ -1484,7 +1484,6 @@ interface DrawView ...@@ -1484,7 +1484,6 @@ interface DrawView
ExecMethod = FuTemporary ; ExecMethod = FuTemporary ;
StateMethod = GetAttrState ; StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ; GroupId = GID_DOCUMENT ;
Cachable ;
] ]
SID_STYLE_DRAGHIERARCHIE // ole : no, status : ? SID_STYLE_DRAGHIERARCHIE // ole : no, status : ?
[ [
...@@ -1495,56 +1494,48 @@ interface DrawView ...@@ -1495,56 +1494,48 @@ interface DrawView
ExecMethod = FuTemporary ; ExecMethod = FuTemporary ;
StateMethod = GetAttrState ; StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ; GroupId = GID_DOCUMENT ;
Cachable ;
] ]
SID_STYLE_DELETE // ole : no, status : ? SID_STYLE_DELETE // ole : no, status : ?
[ [
ExecMethod = FuTemporary ; ExecMethod = FuTemporary ;
StateMethod = GetAttrState ; StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ; GroupId = GID_DOCUMENT ;
Cachable ;
] ]
SID_STYLE_HIDE SID_STYLE_HIDE
[ [
ExecMethod = FuTemporary ; ExecMethod = FuTemporary ;
StateMethod = GetAttrState ; StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ; GroupId = GID_DOCUMENT ;
Cachable ;
] ]
SID_STYLE_SHOW SID_STYLE_SHOW
[ [
ExecMethod = FuTemporary ; ExecMethod = FuTemporary ;
StateMethod = GetAttrState ; StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ; GroupId = GID_DOCUMENT ;
Cachable ;
] ]
SID_STYLE_APPLY // ole : no, status : ? SID_STYLE_APPLY // ole : no, status : ?
[ [
ExecMethod = FuTemporary ; ExecMethod = FuTemporary ;
StateMethod = GetAttrState ; StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ; GroupId = GID_DOCUMENT ;
Cachable ;
] ]
SID_STYLE_WATERCAN // ole : no, status : ? SID_STYLE_WATERCAN // ole : no, status : ?
[ [
ExecMethod = FuTemporary ; ExecMethod = FuTemporary ;
StateMethod = GetAttrState ; StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ; GroupId = GID_DOCUMENT ;
Cachable ;
] ]
SID_STYLE_NEW_BY_EXAMPLE // ole : no, status : ? SID_STYLE_NEW_BY_EXAMPLE // ole : no, status : ?
[ [
ExecMethod = FuTemporary ; ExecMethod = FuTemporary ;
StateMethod = GetAttrState ; StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ; GroupId = GID_DOCUMENT ;
Cachable ;
] ]
SID_STYLE_UPDATE_BY_EXAMPLE // ole : no, status : ? SID_STYLE_UPDATE_BY_EXAMPLE // ole : no, status : ?
[ [
ExecMethod = FuTemporary ; ExecMethod = FuTemporary ;
StateMethod = GetAttrState ; StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ; GroupId = GID_DOCUMENT ;
Cachable ;
] ]
SID_SET_DEFAULT // ole : no, status : ? SID_SET_DEFAULT // ole : no, status : ?
[ [
...@@ -1572,13 +1563,11 @@ interface DrawView ...@@ -1572,13 +1563,11 @@ interface DrawView
[ [
ExecMethod = ExecRuler ; ExecMethod = ExecRuler ;
StateMethod = GetRulerState ; StateMethod = GetRulerState ;
Cachable ;
] ]
SID_ATTR_LONG_ULSPACE // ole : no, status : ? SID_ATTR_LONG_ULSPACE // ole : no, status : ?
[ [
ExecMethod = ExecRuler ; ExecMethod = ExecRuler ;
StateMethod = GetRulerState ; StateMethod = GetRulerState ;
Cachable ;
] ]
SID_RULER_LR_MIN_MAX // ole : no, status : ? SID_RULER_LR_MIN_MAX // ole : no, status : ?
[ [
...@@ -1704,7 +1693,6 @@ interface DrawView ...@@ -1704,7 +1693,6 @@ interface DrawView
ExecMethod = FuSupport ; ExecMethod = FuSupport ;
StateMethod = GetMenuState ; StateMethod = GetMenuState ;
GroupId = GID_DOCUMENT ; GroupId = GID_DOCUMENT ;
Cachable ;
MenuConfig = TRUE ; MenuConfig = TRUE ;
] ]
SID_TEXTALIGNMENT // ole : no, status : ? SID_TEXTALIGNMENT // ole : no, status : ?
...@@ -1785,7 +1773,6 @@ interface DrawView ...@@ -1785,7 +1773,6 @@ interface DrawView
[ [
ExecMethod = ExecGallery ; ExecMethod = ExecGallery ;
GroupId = GID_DOCUMENT ; GroupId = GID_DOCUMENT ;
Cachable ;
] ]
SID_NAVIGATOR_INIT // ole : no, status : ? SID_NAVIGATOR_INIT // ole : no, status : ?
[ [
......
...@@ -26,7 +26,7 @@ interface StarImpress ...@@ -26,7 +26,7 @@ interface StarImpress
ExecMethod = Execute ; ExecMethod = Execute ;
StateMethod = GetState ; StateMethod = GetState ;
GroupId = GID_APPLICATION ; GroupId = GID_APPLICATION ;
Cachable , Container ; Container ;
] ]
SID_ATTR_METRIC SID_ATTR_METRIC
......
...@@ -23,7 +23,7 @@ shell TextObjectBar ...@@ -23,7 +23,7 @@ shell TextObjectBar
ExecMethod = Execute; ExecMethod = Execute;
StateMethod = GetAttrState; StateMethod = GetAttrState;
GroupId = GID_DOCUMENT; GroupId = GID_DOCUMENT;
Cachable, AutoUpdate; AutoUpdate;
] ]
SID_ATTR_CHAR_FONT // ole : ?, status : ? SID_ATTR_CHAR_FONT // ole : ?, status : ?
...@@ -102,63 +102,63 @@ shell TextObjectBar ...@@ -102,63 +102,63 @@ shell TextObjectBar
[ [
ExecMethod = Execute; ExecMethod = Execute;
StateMethod = GetAttrState; StateMethod = GetAttrState;
// Cachable, AutoUpdate; // AutoUpdate;
] ]
SID_ATTR_PARA_ADJUST_CENTER // ole : ?, status : ? SID_ATTR_PARA_ADJUST_CENTER // ole : ?, status : ?
[ [
ExecMethod = Execute; ExecMethod = Execute;
StateMethod = GetAttrState; StateMethod = GetAttrState;
// Cachable, AutoUpdate; // AutoUpdate;
] ]
SID_ATTR_PARA_ADJUST_RIGHT // ole : ?, status : ? SID_ATTR_PARA_ADJUST_RIGHT // ole : ?, status : ?
[ [
ExecMethod = Execute; ExecMethod = Execute;
StateMethod = GetAttrState; StateMethod = GetAttrState;
// Cachable, AutoUpdate; // AutoUpdate;
] ]
SID_ATTR_PARA_ADJUST_BLOCK // ole : ?, status : ? SID_ATTR_PARA_ADJUST_BLOCK // ole : ?, status : ?
[ [
ExecMethod = Execute; ExecMethod = Execute;
StateMethod = GetAttrState; StateMethod = GetAttrState;
// Cachable, AutoUpdate; // AutoUpdate;
] ]
SID_ATTR_PARA_LEFT_TO_RIGHT // ole : ?, status : ? SID_ATTR_PARA_LEFT_TO_RIGHT // ole : ?, status : ?
[ [
ExecMethod = Execute; ExecMethod = Execute;
StateMethod = GetAttrState; StateMethod = GetAttrState;
// Cachable, AutoUpdate; // AutoUpdate;
] ]
SID_ATTR_PARA_RIGHT_TO_LEFT // ole : ?, status : ? SID_ATTR_PARA_RIGHT_TO_LEFT // ole : ?, status : ?
[ [
ExecMethod = Execute; ExecMethod = Execute;
StateMethod = GetAttrState; StateMethod = GetAttrState;
// Cachable, AutoUpdate; // AutoUpdate;
] ]
SID_ATTR_PARA_LINESPACE_10 // ole : ?, status : ? SID_ATTR_PARA_LINESPACE_10 // ole : ?, status : ?
[ [
ExecMethod = Execute; ExecMethod = Execute;
StateMethod = GetAttrState; StateMethod = GetAttrState;
// Cachable, AutoUpdate; // AutoUpdate;
] ]
SID_ATTR_PARA_LINESPACE_15 // ole : ?, status : ? SID_ATTR_PARA_LINESPACE_15 // ole : ?, status : ?
[ [
ExecMethod = Execute; ExecMethod = Execute;
StateMethod = GetAttrState; StateMethod = GetAttrState;
// Cachable, AutoUpdate; // AutoUpdate;
] ]
SID_ATTR_PARA_LINESPACE_20 // ole : ?, status : ? SID_ATTR_PARA_LINESPACE_20 // ole : ?, status : ?
[ [
ExecMethod = Execute; ExecMethod = Execute;
StateMethod = GetAttrState; StateMethod = GetAttrState;
// Cachable, AutoUpdate; // AutoUpdate;
] ]
SID_SET_SUPER_SCRIPT // ole : ?, status : ? SID_SET_SUPER_SCRIPT // ole : ?, status : ?
......
...@@ -146,7 +146,6 @@ interface ImpressEditView : DrawView ...@@ -146,7 +146,6 @@ interface ImpressEditView : DrawView
ExecMethod = Execute ; ExecMethod = Execute ;
StateMethod = GetState ; StateMethod = GetState ;
GroupId = GID_DOCUMENT ; GroupId = GID_DOCUMENT ;
Cachable ;
] ]
SID_SEARCH_ITEM // ole : ?, status : ? SID_SEARCH_ITEM // ole : ?, status : ?
[ [
......
...@@ -26,7 +26,6 @@ interface GraphicEditView : DrawView ...@@ -26,7 +26,6 @@ interface GraphicEditView : DrawView
ExecMethod = Execute ; ExecMethod = Execute ;
StateMethod = GetState ; StateMethod = GetState ;
GroupId = GID_DOCUMENT ; GroupId = GID_DOCUMENT ;
Cachable ;
] ]
SID_SEARCH_ITEM // ole : ?, status : ? SID_SEARCH_ITEM // ole : ?, status : ?
[ [
......
...@@ -45,7 +45,7 @@ interface OutlineView ...@@ -45,7 +45,7 @@ interface OutlineView
[ [
ExecMethod = FuSupport ; ExecMethod = FuSupport ;
StateMethod = GetMenuState ; StateMethod = GetMenuState ;
Cachable , Asynchron ; Asynchron ;
] ]
SID_DRAWINGMODE // ole : no, status : play rec SID_DRAWINGMODE // ole : no, status : play rec
[ [
...@@ -186,26 +186,25 @@ interface OutlineView ...@@ -186,26 +186,25 @@ interface OutlineView
[ [
ExecMethod = FuTemporaryModify ; ExecMethod = FuTemporaryModify ;
StateMethod = GetMenuState ; StateMethod = GetMenuState ;
Cachable , HasDialog , Export ; HasDialog , Export ;
] ]
SID_CHAR_DLG // ole : no, status : ? SID_CHAR_DLG // ole : no, status : ?
[ [
ExecMethod = FuTemporaryModify ; ExecMethod = FuTemporaryModify ;
StateMethod = GetMenuState ; StateMethod = GetMenuState ;
// Cachable , HasDialog , Export ; // HasDialog , Export ;
] ]
SID_CHAR_DLG_EFFECT // wj for sym2_1876 SID_CHAR_DLG_EFFECT // wj for sym2_1876
[ [
ExecMethod = FuTemporaryModify ; ExecMethod = FuTemporaryModify ;
StateMethod = GetMenuState ; StateMethod = GetMenuState ;
// Cachable , HasDialog , Export ; // HasDialog , Export ;
] ]
SID_SELECTALL // ole : no, status : ? SID_SELECTALL // ole : no, status : ?
[ [
ExecMethod = FuTemporary ; ExecMethod = FuTemporary ;
StateMethod = GetMenuState ; StateMethod = GetMenuState ;
GroupId = GID_DOCUMENT ; GroupId = GID_DOCUMENT ;
Cachable ;
] ]
SID_INSERTFILE // ole : no, status : ? SID_INSERTFILE // ole : no, status : ?
[ [
...@@ -280,14 +279,12 @@ interface OutlineView ...@@ -280,14 +279,12 @@ interface OutlineView
ExecMethod = FuTemporary ; ExecMethod = FuTemporary ;
StateMethod = GetAttrState ; StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ; GroupId = GID_DOCUMENT ;
Cachable ;
] ]
SID_STYLE_FAMILY3 // ole : no, status : ? SID_STYLE_FAMILY3 // ole : no, status : ?
[ [
ExecMethod = FuTemporary ; ExecMethod = FuTemporary ;
StateMethod = GetAttrState ; StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ; GroupId = GID_DOCUMENT ;
Cachable ;
] ]
// Templates // Templates
// no menu entry // no menu entry
...@@ -302,7 +299,6 @@ interface OutlineView ...@@ -302,7 +299,6 @@ interface OutlineView
ExecMethod = FuTemporary ; ExecMethod = FuTemporary ;
StateMethod = GetAttrState ; StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ; GroupId = GID_DOCUMENT ;
Cachable ;
] ]
// no menu entry // no menu entry
SID_STYLE_UPDATE_BY_EXAMPLE // ole : no, status : ? SID_STYLE_UPDATE_BY_EXAMPLE // ole : no, status : ?
...@@ -310,7 +306,6 @@ interface OutlineView ...@@ -310,7 +306,6 @@ interface OutlineView
ExecMethod = FuTemporary ; ExecMethod = FuTemporary ;
StateMethod = GetAttrState ; StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ; GroupId = GID_DOCUMENT ;
Cachable ;
] ]
// no menu entry // no menu entry
SID_STYLE_WATERCAN // ole : no, status : ? SID_STYLE_WATERCAN // ole : no, status : ?
...@@ -318,7 +313,6 @@ interface OutlineView ...@@ -318,7 +313,6 @@ interface OutlineView
ExecMethod = FuTemporary ; ExecMethod = FuTemporary ;
StateMethod = GetAttrState ; StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ; GroupId = GID_DOCUMENT ;
Cachable ;
] ]
// no menu entry // no menu entry
SID_STYLE_NEW_BY_EXAMPLE // ole : no, status : ? SID_STYLE_NEW_BY_EXAMPLE // ole : no, status : ?
...@@ -326,7 +320,6 @@ interface OutlineView ...@@ -326,7 +320,6 @@ interface OutlineView
ExecMethod = FuTemporary ; ExecMethod = FuTemporary ;
StateMethod = GetAttrState ; StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ; GroupId = GID_DOCUMENT ;
Cachable ;
] ]
// no menu entry // no menu entry
SID_STYLE_NEW // ole : no, status : ? SID_STYLE_NEW // ole : no, status : ?
...@@ -334,7 +327,6 @@ interface OutlineView ...@@ -334,7 +327,6 @@ interface OutlineView
ExecMethod = FuTemporary ; ExecMethod = FuTemporary ;
StateMethod = GetAttrState ; StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ; GroupId = GID_DOCUMENT ;
Cachable ;
] ]
// no menu entry // no menu entry
SID_STYLE_DELETE // ole : no, status : ? SID_STYLE_DELETE // ole : no, status : ?
...@@ -342,21 +334,18 @@ interface OutlineView ...@@ -342,21 +334,18 @@ interface OutlineView
ExecMethod = FuTemporary ; ExecMethod = FuTemporary ;
StateMethod = GetAttrState ; StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ; GroupId = GID_DOCUMENT ;
Cachable ;
] ]
SID_STYLE_HIDE SID_STYLE_HIDE
[ [
ExecMethod = FuTemporary ; ExecMethod = FuTemporary ;
StateMethod = GetAttrState ; StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ; GroupId = GID_DOCUMENT ;
Cachable ;
] ]
SID_STYLE_SHOW SID_STYLE_SHOW
[ [
ExecMethod = FuTemporary ; ExecMethod = FuTemporary ;
StateMethod = GetAttrState ; StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ; GroupId = GID_DOCUMENT ;
Cachable ;
] ]
SID_AUTOSPELL_CHECK // ole : no, status : play rec SID_AUTOSPELL_CHECK // ole : no, status : play rec
[ [
...@@ -543,7 +532,6 @@ interface OutlineView ...@@ -543,7 +532,6 @@ interface OutlineView
ExecMethod = Execute ; ExecMethod = Execute ;
StateMethod = GetState ; StateMethod = GetState ;
GroupId = GID_DOCUMENT ; GroupId = GID_DOCUMENT ;
Cachable ;
] ]
SID_SEARCH_ITEM // ole : ?, status : ? SID_SEARCH_ITEM // ole : ?, status : ?
[ [
......
...@@ -21,7 +21,6 @@ SfxBoolItem VerticalTextFitToSizeTool SID_TEXT_FITTOSIZE_VERTICAL ...@@ -21,7 +21,6 @@ SfxBoolItem VerticalTextFitToSizeTool SID_TEXT_FITTOSIZE_VERTICAL
[ [
/* flags: */ /* flags: */
AutoUpdate = TRUE, AutoUpdate = TRUE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = FALSE, HasDialog = FALSE,
ReadOnlyDoc = FALSE, ReadOnlyDoc = FALSE,
...@@ -43,7 +42,6 @@ SvxObjectItem RulerObject SID_RULER_OBJECT ...@@ -43,7 +42,6 @@ SvxObjectItem RulerObject SID_RULER_OBJECT
[ [
/* flags: */ /* flags: */
AutoUpdate = FALSE, AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = FALSE, HasDialog = FALSE,
ReadOnlyDoc = TRUE, ReadOnlyDoc = TRUE,
...@@ -73,7 +71,6 @@ SfxBoolItem OutputQualityContrast SID_OUTPUT_QUALITY_CONTRAST ...@@ -73,7 +71,6 @@ SfxBoolItem OutputQualityContrast SID_OUTPUT_QUALITY_CONTRAST
[ [
/* flags: */ /* flags: */
AutoUpdate = FALSE, AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = FALSE, HasDialog = FALSE,
ReadOnlyDoc = TRUE, ReadOnlyDoc = TRUE,
......
This diff is collapsed.
This diff is collapsed.
...@@ -21,7 +21,6 @@ SfxVoidItem ChangeAlignment SID_ALIGN ...@@ -21,7 +21,6 @@ SfxVoidItem ChangeAlignment SID_ALIGN
[ [
/* flags: */ /* flags: */
AutoUpdate = FALSE, AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = TRUE, HasDialog = TRUE,
ReadOnlyDoc = FALSE, ReadOnlyDoc = FALSE,
...@@ -45,7 +44,6 @@ SfxVoidItem ChangeDistance SID_DISTANCE ...@@ -45,7 +44,6 @@ SfxVoidItem ChangeDistance SID_DISTANCE
[ [
/* flags: */ /* flags: */
AutoUpdate = FALSE, AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = TRUE, HasDialog = TRUE,
ReadOnlyDoc = FALSE, ReadOnlyDoc = FALSE,
...@@ -69,7 +67,6 @@ SfxVoidItem ChangeFont SID_FONT ...@@ -69,7 +67,6 @@ SfxVoidItem ChangeFont SID_FONT
[ [
/* flags: */ /* flags: */
AutoUpdate = FALSE, AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = TRUE, HasDialog = TRUE,
ReadOnlyDoc = FALSE, ReadOnlyDoc = FALSE,
...@@ -93,7 +90,6 @@ SfxVoidItem ChangeFontSize SID_FONTSIZE ...@@ -93,7 +90,6 @@ SfxVoidItem ChangeFontSize SID_FONTSIZE
[ [
/* flags: */ /* flags: */
AutoUpdate = FALSE, AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = TRUE, HasDialog = TRUE,
ReadOnlyDoc = FALSE, ReadOnlyDoc = FALSE,
...@@ -117,7 +113,6 @@ SfxVoidItem CommandWindow SID_CMDBOXWINDOW ...@@ -117,7 +113,6 @@ SfxVoidItem CommandWindow SID_CMDBOXWINDOW
[ [
/* flags: */ /* flags: */
AutoUpdate = FALSE, AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = FALSE, HasDialog = FALSE,
ReadOnlyDoc = FALSE, ReadOnlyDoc = FALSE,
...@@ -141,7 +136,6 @@ SfxVoidItem ElementsDockingWindow SID_ELEMENTSDOCKINGWINDOW ...@@ -141,7 +136,6 @@ SfxVoidItem ElementsDockingWindow SID_ELEMENTSDOCKINGWINDOW
[ [
/* flags: */ /* flags: */
AutoUpdate = FALSE, AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = FALSE, HasDialog = FALSE,
ReadOnlyDoc = FALSE, ReadOnlyDoc = FALSE,
...@@ -165,7 +159,6 @@ SfxVoidItem Preferences SID_PREFERENCES ...@@ -165,7 +159,6 @@ SfxVoidItem Preferences SID_PREFERENCES
[ [
/* flags: */ /* flags: */
AutoUpdate = FALSE, AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = TRUE, HasDialog = TRUE,
ReadOnlyDoc = TRUE, ReadOnlyDoc = TRUE,
...@@ -189,7 +182,6 @@ SfxStringItem ConfigName SID_TEXT ...@@ -189,7 +182,6 @@ SfxStringItem ConfigName SID_TEXT
[ [
/* flags: */ /* flags: */
AutoUpdate = FALSE, AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = FALSE, HasDialog = FALSE,
ReadOnlyDoc = TRUE, ReadOnlyDoc = TRUE,
...@@ -215,7 +207,6 @@ SfxVoidItem CopyObject SID_COPYOBJECT ...@@ -215,7 +207,6 @@ SfxVoidItem CopyObject SID_COPYOBJECT
[ [
/* flags: */ /* flags: */
AutoUpdate = FALSE, AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = FALSE, HasDialog = FALSE,
ReadOnlyDoc = FALSE, ReadOnlyDoc = FALSE,
...@@ -239,7 +230,6 @@ SfxVoidItem Draw SID_DRAW ...@@ -239,7 +230,6 @@ SfxVoidItem Draw SID_DRAW
[ [
/* flags: */ /* flags: */
AutoUpdate = FALSE, AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = FALSE, HasDialog = FALSE,
ReadOnlyDoc = TRUE, ReadOnlyDoc = TRUE,
...@@ -263,7 +253,6 @@ SfxBoolItem FormelCursor SID_FORMULACURSOR ...@@ -263,7 +253,6 @@ SfxBoolItem FormelCursor SID_FORMULACURSOR
[ [
/* flags: */ /* flags: */
AutoUpdate = TRUE, AutoUpdate = TRUE,
Cachable = Cachable,
FastCall = TRUE, FastCall = TRUE,
HasDialog = FALSE, HasDialog = FALSE,
ReadOnlyDoc = TRUE, ReadOnlyDoc = TRUE,
...@@ -287,7 +276,6 @@ SfxInt16Item Graphic SID_GAPHIC_SM ...@@ -287,7 +276,6 @@ SfxInt16Item Graphic SID_GAPHIC_SM
[ [
/* flags: */ /* flags: */
AutoUpdate = FALSE, AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = FALSE, HasDialog = FALSE,
ReadOnlyDoc = TRUE, ReadOnlyDoc = TRUE,
...@@ -313,7 +301,6 @@ SfxVoidItem InsertCommand SID_INSERTCOMMAND ...@@ -313,7 +301,6 @@ SfxVoidItem InsertCommand SID_INSERTCOMMAND
[ [
/* flags: */ /* flags: */
AutoUpdate = FALSE, AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = FALSE, HasDialog = FALSE,
ReadOnlyDoc = TRUE, ReadOnlyDoc = TRUE,
...@@ -336,7 +323,6 @@ SfxVoidItem InsertCommandText SID_INSERTCOMMANDTEXT ...@@ -336,7 +323,6 @@ SfxVoidItem InsertCommandText SID_INSERTCOMMANDTEXT
[ [
/* flags: */ /* flags: */
AutoUpdate = FALSE, AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = FALSE, HasDialog = FALSE,
ReadOnlyDoc = TRUE, ReadOnlyDoc = TRUE,
...@@ -360,7 +346,6 @@ SfxVoidItem InsertConfigName SID_INSERTSYMBOL ...@@ -360,7 +346,6 @@ SfxVoidItem InsertConfigName SID_INSERTSYMBOL
[ [
/* flags: */ /* flags: */
AutoUpdate = FALSE, AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = FALSE, HasDialog = FALSE,
ReadOnlyDoc = TRUE, ReadOnlyDoc = TRUE,
...@@ -384,7 +369,6 @@ SfxBoolItem ImportFormula SID_IMPORT_FORMULA ...@@ -384,7 +369,6 @@ SfxBoolItem ImportFormula SID_IMPORT_FORMULA
[ [
/* flags: */ /* flags: */
AutoUpdate = FALSE, AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = TRUE, HasDialog = TRUE,
ReadOnlyDoc = FALSE, ReadOnlyDoc = FALSE,
...@@ -407,7 +391,6 @@ SfxBoolItem ImportMathMLClipboard SID_IMPORT_MATHML_CLIPBOARD ...@@ -407,7 +391,6 @@ SfxBoolItem ImportMathMLClipboard SID_IMPORT_MATHML_CLIPBOARD
[ [
/* flags: */ /* flags: */
AutoUpdate = FALSE, AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = TRUE, FastCall = TRUE,
HasDialog = FALSE, /*obsolete */ HasDialog = FALSE, /*obsolete */
ReadOnlyDoc = FALSE, ReadOnlyDoc = FALSE,
...@@ -430,7 +413,6 @@ SfxVoidItem LoadSymbols SID_LOADSYMBOLS ...@@ -430,7 +413,6 @@ SfxVoidItem LoadSymbols SID_LOADSYMBOLS
[ [
/* flags: */ /* flags: */
AutoUpdate = FALSE, AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = FALSE, HasDialog = FALSE,
ReadOnlyDoc = TRUE, ReadOnlyDoc = TRUE,
...@@ -454,7 +436,6 @@ SfxStringItem ModifyStatus SID_MODIFYSTATUS ...@@ -454,7 +436,6 @@ SfxStringItem ModifyStatus SID_MODIFYSTATUS
[ [
/* flags: */ /* flags: */
AutoUpdate = FALSE, AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = FALSE, HasDialog = FALSE,
ReadOnlyDoc = TRUE, ReadOnlyDoc = TRUE,
...@@ -480,7 +461,6 @@ SfxVoidItem NextError SID_NEXTERR ...@@ -480,7 +461,6 @@ SfxVoidItem NextError SID_NEXTERR
[ [
/* flags: */ /* flags: */
AutoUpdate = FALSE, AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = FALSE, HasDialog = FALSE,
ReadOnlyDoc = TRUE, ReadOnlyDoc = TRUE,
...@@ -504,7 +484,6 @@ SfxVoidItem NextMark SID_NEXTMARK ...@@ -504,7 +484,6 @@ SfxVoidItem NextMark SID_NEXTMARK
[ [
/* flags: */ /* flags: */
AutoUpdate = FALSE, AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = FALSE, HasDialog = FALSE,
ReadOnlyDoc = TRUE, ReadOnlyDoc = TRUE,
...@@ -528,7 +507,6 @@ SfxVoidItem PasteObject SID_PASTEOBJECT ...@@ -528,7 +507,6 @@ SfxVoidItem PasteObject SID_PASTEOBJECT
[ [
/* flags: */ /* flags: */
AutoUpdate = FALSE, AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = FALSE, HasDialog = FALSE,
ReadOnlyDoc = TRUE, ReadOnlyDoc = TRUE,
...@@ -552,7 +530,6 @@ SfxVoidItem PrevError SID_PREVERR ...@@ -552,7 +530,6 @@ SfxVoidItem PrevError SID_PREVERR
[ [
/* flags: */ /* flags: */
AutoUpdate = FALSE, AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = FALSE, HasDialog = FALSE,
ReadOnlyDoc = TRUE, ReadOnlyDoc = TRUE,
...@@ -576,7 +553,6 @@ SfxVoidItem PrevMark SID_PREVMARK ...@@ -576,7 +553,6 @@ SfxVoidItem PrevMark SID_PREVMARK
[ [
/* flags: */ /* flags: */
AutoUpdate = FALSE, AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = FALSE, HasDialog = FALSE,
ReadOnlyDoc = TRUE, ReadOnlyDoc = TRUE,
...@@ -600,7 +576,6 @@ SfxBoolItem RedrawAutomatic SID_AUTO_REDRAW ...@@ -600,7 +576,6 @@ SfxBoolItem RedrawAutomatic SID_AUTO_REDRAW
[ [
/* flags: */ /* flags: */
AutoUpdate = TRUE, AutoUpdate = TRUE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = FALSE, HasDialog = FALSE,
ReadOnlyDoc = TRUE, ReadOnlyDoc = TRUE,
...@@ -626,7 +601,6 @@ SfxVoidItem SaveSymbols SID_SAVESYMBOLS ...@@ -626,7 +601,6 @@ SfxVoidItem SaveSymbols SID_SAVESYMBOLS
[ [
/* flags: */ /* flags: */
AutoUpdate = FALSE, AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = FALSE, HasDialog = FALSE,
ReadOnlyDoc = TRUE, ReadOnlyDoc = TRUE,
...@@ -650,7 +624,6 @@ SfxVoidItem SetPaperSize SID_GETEDITTEXT ...@@ -650,7 +624,6 @@ SfxVoidItem SetPaperSize SID_GETEDITTEXT
[ [
/* flags: */ /* flags: */
AutoUpdate = FALSE, AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = FALSE, HasDialog = FALSE,
ReadOnlyDoc = TRUE, ReadOnlyDoc = TRUE,
...@@ -674,7 +647,6 @@ SfxVoidItem SymbolCatalogue SID_SYMBOLS_CATALOGUE ...@@ -674,7 +647,6 @@ SfxVoidItem SymbolCatalogue SID_SYMBOLS_CATALOGUE
[ [
/* flags: */ /* flags: */
AutoUpdate = FALSE, AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = TRUE, HasDialog = TRUE,
ReadOnlyDoc = TRUE, ReadOnlyDoc = TRUE,
...@@ -698,7 +670,6 @@ SfxVoidItem Symbols SID_SYMBOLS ...@@ -698,7 +670,6 @@ SfxVoidItem Symbols SID_SYMBOLS
[ [
/* flags: */ /* flags: */
AutoUpdate = FALSE, AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = TRUE, HasDialog = TRUE,
ReadOnlyDoc = TRUE, ReadOnlyDoc = TRUE,
...@@ -722,7 +693,6 @@ SfxBoolItem Textmode SID_TEXTMODE ...@@ -722,7 +693,6 @@ SfxBoolItem Textmode SID_TEXTMODE
[ [
/* flags: */ /* flags: */
AutoUpdate = TRUE, AutoUpdate = TRUE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = FALSE, HasDialog = FALSE,
ReadOnlyDoc = TRUE, ReadOnlyDoc = TRUE,
...@@ -748,7 +718,6 @@ SfxStringItem TextStatus SID_TEXTSTATUS ...@@ -748,7 +718,6 @@ SfxStringItem TextStatus SID_TEXTSTATUS
[ [
/* flags: */ /* flags: */
AutoUpdate = FALSE, AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = FALSE, HasDialog = FALSE,
ReadOnlyDoc = TRUE, ReadOnlyDoc = TRUE,
...@@ -774,7 +743,6 @@ SfxVoidItem UnicodeNotationToggle SID_UNICODE_NOTATION_TOGGLE ...@@ -774,7 +743,6 @@ SfxVoidItem UnicodeNotationToggle SID_UNICODE_NOTATION_TOGGLE
[ [
/* flags: */ /* flags: */
AutoUpdate = FALSE, AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = FALSE, HasDialog = FALSE,
ReadOnlyDoc = FALSE, ReadOnlyDoc = FALSE,
...@@ -798,7 +766,6 @@ SfxVoidItem ToolBoxWindow SID_TOOLBOXWINDOW ...@@ -798,7 +766,6 @@ SfxVoidItem ToolBoxWindow SID_TOOLBOXWINDOW
[ [
/* flags: */ /* flags: */
AutoUpdate = FALSE, AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = FALSE, HasDialog = FALSE,
ReadOnlyDoc = FALSE, ReadOnlyDoc = FALSE,
...@@ -822,7 +789,6 @@ SfxBoolItem ToolBox SID_TOOLBOX ...@@ -822,7 +789,6 @@ SfxBoolItem ToolBox SID_TOOLBOX
[ [
/* flags: */ /* flags: */
AutoUpdate = FALSE, AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = FALSE, HasDialog = FALSE,
ReadOnlyDoc = FALSE, ReadOnlyDoc = FALSE,
...@@ -848,7 +814,6 @@ SfxVoidItem ZoomIn SID_ZOOMIN ...@@ -848,7 +814,6 @@ SfxVoidItem ZoomIn SID_ZOOMIN
[ [
/* flags: */ /* flags: */
AutoUpdate = FALSE, AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = FALSE, HasDialog = FALSE,
ReadOnlyDoc = TRUE, ReadOnlyDoc = TRUE,
...@@ -872,7 +837,6 @@ SfxVoidItem ZoomOut SID_ZOOMOUT ...@@ -872,7 +837,6 @@ SfxVoidItem ZoomOut SID_ZOOMOUT
[ [
/* flags: */ /* flags: */
AutoUpdate = FALSE, AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE, FastCall = FALSE,
HasDialog = FALSE, HasDialog = FALSE,
ReadOnlyDoc = TRUE, ReadOnlyDoc = TRUE,
......
This diff is collapsed.
...@@ -213,7 +213,7 @@ interface BaseTextSelection ...@@ -213,7 +213,7 @@ interface BaseTextSelection
[ [
ExecMethod = ExecBckCol ; ExecMethod = ExecBckCol ;
StateMethod = GetBckColState ; StateMethod = GetBckColState ;
Cachable , AutoUpdate ; AutoUpdate ;
DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
] ]
......
...@@ -567,7 +567,6 @@ interface BaseTextEditView ...@@ -567,7 +567,6 @@ interface BaseTextEditView
[ [
ExecMethod = Execute ; ExecMethod = Execute ;
StateMethod = NoState ; StateMethod = NoState ;
FastCall , Cachable ;
] ]
FN_SYNC_LABELS // status(play) FN_SYNC_LABELS // status(play)
...@@ -704,7 +703,6 @@ interface BaseTextEditView ...@@ -704,7 +703,6 @@ interface BaseTextEditView
ExecMethod = ExecViewOptions ; ExecMethod = ExecViewOptions ;
StateMethod = StateViewOptions ; StateMethod = StateViewOptions ;
Export = FALSE; Export = FALSE;
Cachable;
DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
] ]
...@@ -713,7 +711,6 @@ interface BaseTextEditView ...@@ -713,7 +711,6 @@ interface BaseTextEditView
ExecMethod = ExecViewOptions ; ExecMethod = ExecViewOptions ;
StateMethod = StateViewOptions ; StateMethod = StateViewOptions ;
Export = FALSE; Export = FALSE;
Cachable;
] ]
FN_VIEW_GRAPHIC // status() FN_VIEW_GRAPHIC // status()
...@@ -733,7 +730,6 @@ interface BaseTextEditView ...@@ -733,7 +730,6 @@ interface BaseTextEditView
[ [
ExecMethod = ExecViewOptions ; ExecMethod = ExecViewOptions ;
StateMethod = StateViewOptions ; StateMethod = StateViewOptions ;
Cachable ;
Export = FALSE; Export = FALSE;
] ]
...@@ -741,7 +737,6 @@ interface BaseTextEditView ...@@ -741,7 +737,6 @@ interface BaseTextEditView
[ [
ExecMethod = ExecViewOptions ; ExecMethod = ExecViewOptions ;
StateMethod = StateViewOptions ; StateMethod = StateViewOptions ;
Cachable ;
Export = FALSE; Export = FALSE;
] ]
...@@ -749,7 +744,6 @@ interface BaseTextEditView ...@@ -749,7 +744,6 @@ interface BaseTextEditView
[ [
ExecMethod = ExecViewOptions ; ExecMethod = ExecViewOptions ;
StateMethod = StateViewOptions ; StateMethod = StateViewOptions ;
Cachable ;
Export = FALSE; Export = FALSE;
] ]
......
This diff is collapsed.
...@@ -26,7 +26,6 @@ interface Text : BaseText ...@@ -26,7 +26,6 @@ interface Text : BaseText
ExecMethod = ExecInsert ; ExecMethod = ExecInsert ;
StateMethod = StateInsert ; StateMethod = StateInsert ;
DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
Cachable ;
] ]
// Here should the slots be integrated, which are not supported // Here should the slots be integrated, which are not supported
// in StarWriter/WEB // in StarWriter/WEB
......
...@@ -26,7 +26,6 @@ interface WebText : BaseText ...@@ -26,7 +26,6 @@ interface WebText : BaseText
ExecMethod = ExecInsert ; ExecMethod = ExecInsert ;
StateMethod = StateInsert ; StateMethod = StateInsert ;
DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
Cachable ;
] ]
// Here should the slots are be inserted, but O N L Y those that are supported // Here should the slots are be inserted, but O N L Y those that are supported
// by StarWriter/WEB // by StarWriter/WEB
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment