diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-08-27 00:06:55 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-08-29 09:56:06 +0100 |
commit | fa19c5ec0844456a485cb7eb4a64f9d9c6d678bf (patch) | |
tree | a2426854601f2dff447fee8438badd1397959667 | |
parent | fea6627b6170a2921d3cac228f857c8bf9f70def (diff) |
callcatcher: various
-rw-r--r-- | sfx2/inc/sfx2/frmdescr.hxx | 6 | ||||
-rw-r--r-- | sfx2/inc/sfx2/imgmgr.hxx | 3 | ||||
-rw-r--r-- | sfx2/inc/sfx2/objsh.hxx | 2 | ||||
-rw-r--r-- | sfx2/inc/sfx2/progress.hxx | 3 | ||||
-rw-r--r-- | sfx2/source/bastyp/progress.cxx | 58 | ||||
-rw-r--r-- | sfx2/source/doc/frmdescr.cxx | 25 | ||||
-rw-r--r-- | sfx2/source/doc/objmisc.cxx | 11 | ||||
-rw-r--r-- | sfx2/source/doc/objxtor.cxx | 6 | ||||
-rw-r--r-- | sfx2/source/toolbox/imgmgr.cxx | 15 | ||||
-rw-r--r-- | sot/source/sdstor/stgdir.cxx | 25 | ||||
-rw-r--r-- | sot/source/sdstor/stgdir.hxx | 1 | ||||
-rw-r--r-- | svtools/inc/svtools/wizdlg.hxx | 1 | ||||
-rw-r--r-- | svtools/source/dialogs/wizdlg.cxx | 7 | ||||
-rw-r--r-- | unotools/inc/unotools/moduleoptions.hxx | 3 | ||||
-rw-r--r-- | unotools/inc/unotools/startoptions.hxx | 16 | ||||
-rw-r--r-- | unotools/source/config/moduleoptions.cxx | 15 | ||||
-rw-r--r-- | unotools/source/config/startoptions.cxx | 18 | ||||
-rw-r--r-- | unusedcode.easy | 13 |
18 files changed, 0 insertions, 228 deletions
diff --git a/sfx2/inc/sfx2/frmdescr.hxx b/sfx2/inc/sfx2/frmdescr.hxx index 168a30202ffd..a0748d65a94b 100644 --- a/sfx2/inc/sfx2/frmdescr.hxx +++ b/sfx2/inc/sfx2/frmdescr.hxx @@ -235,7 +235,6 @@ public: bHasBorderInherited( sal_True ), pFrame( 0 ) {} - SfxFrameProperties( const SfxFrameDescriptor *pD ); ~SfxFrameProperties() { delete pFrame; } int operator ==( const SfxFrameProperties& ) const; @@ -248,11 +247,6 @@ class SfxFrameDescriptorItem : public SfxPoolItem public: TYPEINFO(); - SfxFrameDescriptorItem ( const SfxFrameDescriptor *pD, const sal_uInt16 nId = SID_FRAMEDESCRIPTOR ) - : SfxPoolItem( nId ) - , aProperties( pD ) - {} - SfxFrameDescriptorItem ( const sal_uInt16 nId = SID_FRAMEDESCRIPTOR ) : SfxPoolItem( nId ) {} diff --git a/sfx2/inc/sfx2/imgmgr.hxx b/sfx2/inc/sfx2/imgmgr.hxx index de3c9b55ecfc..7cc90c0326bb 100644 --- a/sfx2/inc/sfx2/imgmgr.hxx +++ b/sfx2/inc/sfx2/imgmgr.hxx @@ -52,9 +52,6 @@ public: void RegisterToolBox( ToolBox *pBox, sal_uInt16 nFlags=0xFFFF); void ReleaseToolBox( ToolBox *pBox ); - // get images from resources - void SetImages( ToolBox& rToolBox ); - void SetImages( ToolBox& rToolBox, bool bLarge ); void SetImagesForceSize( ToolBox& rToolBox, bool bLarge ); Image GetImage( sal_uInt16 nId, bool bLarge ) const; diff --git a/sfx2/inc/sfx2/objsh.hxx b/sfx2/inc/sfx2/objsh.hxx index d1c58e3e2523..40959524bc02 100644 --- a/sfx2/inc/sfx2/objsh.hxx +++ b/sfx2/inc/sfx2/objsh.hxx @@ -395,7 +395,6 @@ public: void SetHeaderAttributesForSourceViewHack(); sal_Bool IsTemplate() const; - void SetTemplate(sal_Bool bIs); sal_Bool IsQueryLoadTemplate() const; sal_Bool IsUseUserData() const; @@ -570,7 +569,6 @@ public: String UpdateTitle( SfxMedium* pMed=NULL, sal_uInt16 nDocViewNo=0 ); static SfxObjectShell* CreateObject( const String& rServiceName, SfxObjectCreateMode = SFX_CREATE_MODE_STANDARD ); static SfxObjectShell* CreateObjectByFactoryName( const String& rURL, SfxObjectCreateMode = SFX_CREATE_MODE_STANDARD ); - static SfxObjectShell* CreateAndLoadObject( const SfxItemSet& rSet, SfxFrame* pFrame=0 ); static ::com::sun::star::uno::Reference< ::com::sun::star::lang::XComponent > CreateAndLoadComponent( const SfxItemSet& rSet, SfxFrame* pFrame = NULL ); static SfxObjectShell* GetShellFromComponent( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XComponent >& xComp ); diff --git a/sfx2/inc/sfx2/progress.hxx b/sfx2/inc/sfx2/progress.hxx index 4b1fb074e4b8..6eefe5382970 100644 --- a/sfx2/inc/sfx2/progress.hxx +++ b/sfx2/inc/sfx2/progress.hxx @@ -73,9 +73,6 @@ public: void Stop(); - void SetWaitMode( sal_Bool bWait ); - sal_Bool GetWaitMode() const; - static SfxProgress* GetActiveProgress( SfxObjectShell *pDocSh = 0 ); static void EnterLock(); static void LeaveLock(); diff --git a/sfx2/source/bastyp/progress.cxx b/sfx2/source/bastyp/progress.cxx index 534abbfe8c89..2ea27dc1de01 100644 --- a/sfx2/source/bastyp/progress.cxx +++ b/sfx2/source/bastyp/progress.cxx @@ -541,64 +541,6 @@ void SfxProgress::Reschedule() // ----------------------------------------------------------------------- -void SfxProgress::SetWaitMode -( - sal_Bool bWait /* TRUE - - FALSE Wait-cursor not used */ -) - -/* [Description] - - Switch Wait-mode. -*/ - -{ - if( pImp->pActiveProgress ) return; - if ( !bSuspended && pImp->bWaitMode != bWait ) - { - if ( bWait ) - { - if ( pImp->xObjSh.Is() && !pImp->bAllDocs ) - { - for ( SfxViewFrame *pFrame = - SfxViewFrame::GetFirst(pImp->xObjSh); - pFrame; - pFrame = SfxViewFrame::GetNext( *pFrame, pImp->xObjSh ) ) - pFrame->GetWindow().EnterWait(); - } - } - else - { - if ( pImp->xObjSh.Is() && !pImp->bAllDocs ) - { - for ( SfxViewFrame *pFrame = - SfxViewFrame::GetFirst(pImp->xObjSh); - pFrame; - pFrame = SfxViewFrame::GetNext( *pFrame, pImp->xObjSh ) ) - pFrame->GetWindow().LeaveWait(); - } - } - } - - pImp->bWaitMode = bWait; -} - -// ----------------------------------------------------------------------- - -sal_Bool SfxProgress::GetWaitMode() const - -/* [Description] - - Get Wait-cursor mode. -*/ - -{ - return pImp->bWaitMode; -} - -// ----------------------------------------------------------------------- - SfxProgress* SfxProgress::GetActiveProgress ( SfxObjectShell* pDocSh /* the <SfxObjectShell>, which should be diff --git a/sfx2/source/doc/frmdescr.cxx b/sfx2/source/doc/frmdescr.cxx index 51057306d26b..383c843ab158 100644 --- a/sfx2/source/doc/frmdescr.cxx +++ b/sfx2/source/doc/frmdescr.cxx @@ -201,31 +201,6 @@ sal_uInt16 SfxFrameDescriptor::GetItemPos() const return USHRT_MAX; } - -SfxFrameProperties::SfxFrameProperties( const SfxFrameDescriptor *pD ) - : aURL( pD->GetURL().GetMainURL( INetURLObject::DECODE_TO_IURI ) ) - , aName( pD->GetName() ) - , lMarginWidth( pD->GetMargin().Width() ) - , lMarginHeight( pD->GetMargin().Height() ) - , lSize( pD->GetWidth() ) - , lSetSize( SIZE_NOT_SET ) - , lFrameSpacing( SPACING_NOT_SET ) - , lInheritedFrameSpacing( SPACING_NOT_SET ) - , eScroll( pD->GetScrollingMode() ) - , eSizeSelector( pD->GetSizeSelector() ) - , eSetSizeSelector( SIZE_REL ) - , bHasBorder( pD->HasFrameBorder() ) - , bBorderSet( pD->IsFrameBorderSet() ) - , bResizable( pD->IsResizable() ) - , bSetResizable( sal_False ) - , bIsRootSet( sal_False ) - , bIsInColSet( sal_False ) - , bHasBorderInherited( sal_False ) - , pFrame( pD->Clone() ) -{ - bBorderSet = sal_True; -} - SfxFrameProperties& SfxFrameProperties::operator =( const SfxFrameProperties &rProp ) { diff --git a/sfx2/source/doc/objmisc.cxx b/sfx2/source/doc/objmisc.cxx index 30205131d1ac..c559e61f4254 100644 --- a/sfx2/source/doc/objmisc.cxx +++ b/sfx2/source/doc/objmisc.cxx @@ -281,17 +281,6 @@ sal_Bool SfxObjectShell::IsTemplate() const //------------------------------------------------------------------------- -void SfxObjectShell::SetTemplate(sal_Bool bIs) -{ - pImp->bIsTemplate=bIs; - SfxFilterMatcher aMatcher( GetFactory().GetFactoryName() ); - SfxFilterMatcherIter aIter( aMatcher, SFX_FILTER_TEMPLATEPATH ); - SfxMedium* pMed = GetMedium(); - if( pMed ) pMed->SetFilter( aIter.First() ); -} - -//------------------------------------------------------------------------- - void SfxObjectShell::EnableSetModified( sal_Bool bEnable ) { #ifdef DBG_UTIL diff --git a/sfx2/source/doc/objxtor.cxx b/sfx2/source/doc/objxtor.cxx index afa666c168f2..fd1566b685c0 100644 --- a/sfx2/source/doc/objxtor.cxx +++ b/sfx2/source/doc/objxtor.cxx @@ -1072,12 +1072,6 @@ SfxObjectShell* SfxObjectShell::CreateObject( const String& rServiceName, SfxObj return 0; } -SfxObjectShell* SfxObjectShell::CreateAndLoadObject( const SfxItemSet& rSet, SfxFrame* pFrame ) -{ - Reference<lang::XComponent> xComp = CreateAndLoadComponent(rSet, pFrame); - return GetShellFromComponent(xComp); -} - Reference<lang::XComponent> SfxObjectShell::CreateAndLoadComponent( const SfxItemSet& rSet, SfxFrame* pFrame ) { uno::Sequence < beans::PropertyValue > aProps; diff --git a/sfx2/source/toolbox/imgmgr.cxx b/sfx2/source/toolbox/imgmgr.cxx index e6419cc09ee3..c9faccf1802d 100644 --- a/sfx2/source/toolbox/imgmgr.cxx +++ b/sfx2/source/toolbox/imgmgr.cxx @@ -400,15 +400,6 @@ void SfxImageManager::ReleaseToolBox( ToolBox *pBox ) } } -//------------------------------------------------------------------------- - -void SfxImageManager::SetImages( ToolBox& rToolBox, bool bLarge ) -{ - SetImagesForceSize( rToolBox, bLarge ); -} - -//------------------------------------------------------------------------- - void SfxImageManager::SetImagesForceSize( ToolBox& rToolBox, bool bLarge ) { ImageList* pImageList = pImp->GetImageList( bLarge ); @@ -436,10 +427,4 @@ void SfxImageManager::SetImagesForceSize( ToolBox& rToolBox, bool bLarge ) } } -void SfxImageManager::SetImages( ToolBox& rToolBox ) -{ - sal_Bool bLarge = ( pImp->m_nSymbolsSize == SFX_SYMBOLS_SIZE_LARGE ); - SetImagesForceSize( rToolBox, bLarge ); -} - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sot/source/sdstor/stgdir.cxx b/sot/source/sdstor/stgdir.cxx index fc9610a6af3b..ad1e975faa94 100644 --- a/sot/source/sdstor/stgdir.cxx +++ b/sot/source/sdstor/stgdir.cxx @@ -475,31 +475,6 @@ sal_Int32 StgDirEntry::Write( const void* p, sal_Int32 nLen ) return nLen; } -// Copy the data of one entry into another entry. - -void StgDirEntry::Copy( StgDirEntry& rDest ) -{ - sal_Int32 n = GetSize(); - if( rDest.SetSize( n ) && n ) - { - sal_uInt8 aTempBytes[ 4096 ]; - void* p = static_cast<void*>( aTempBytes ); - Seek( 0L ); - rDest.Seek( 0L ); - while( n ) - { - sal_Int32 nn = n; - if( nn > 4096 ) - nn = 4096; - if( Read( p, nn ) != nn ) - break; - if( rDest.Write( p, nn ) != nn ) - break; - n -= nn; - } - } -} - void StgDirEntry::Copy( BaseStorageStream& rDest ) { sal_Int32 n = GetSize(); diff --git a/sot/source/sdstor/stgdir.hxx b/sot/source/sdstor/stgdir.hxx index ccb12c4762d7..f260d42de3e8 100644 --- a/sot/source/sdstor/stgdir.hxx +++ b/sot/source/sdstor/stgdir.hxx @@ -96,7 +96,6 @@ public: sal_Int32 Tell() { return nPos; } sal_Int32 Read( void*, sal_Int32 ); sal_Int32 Write( const void*, sal_Int32 ); - void Copy( StgDirEntry& ); void Copy( BaseStorageStream& ); }; diff --git a/svtools/inc/svtools/wizdlg.hxx b/svtools/inc/svtools/wizdlg.hxx index 5e5721551d1c..c9e909ddcb5c 100644 --- a/svtools/inc/svtools/wizdlg.hxx +++ b/svtools/inc/svtools/wizdlg.hxx @@ -291,7 +291,6 @@ public: PushButton* GetNextButton() const { return mpNextBtn; } void ShowButtonFixedLine( sal_Bool bVisible ); - sal_Bool IsButtonFixedLineVisible(); void SetViewWindow( Window* pWindow ) { mpViewWindow = pWindow; } Window* GetViewWindow() const { return mpViewWindow; } diff --git a/svtools/source/dialogs/wizdlg.cxx b/svtools/source/dialogs/wizdlg.cxx index e7bb12989e4a..0dd3d9aed83b 100644 --- a/svtools/source/dialogs/wizdlg.cxx +++ b/svtools/source/dialogs/wizdlg.cxx @@ -694,11 +694,4 @@ void WizardDialog::ShowButtonFixedLine( sal_Bool bVisible ) mpFixedLine->Show( bVisible ); } -// ----------------------------------------------------------------------- - -sal_Bool WizardDialog::IsButtonFixedLineVisible() -{ - return (mpFixedLine && mpFixedLine->IsVisible()); -} - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/unotools/inc/unotools/moduleoptions.hxx b/unotools/inc/unotools/moduleoptions.hxx index a2b89f98528b..febf4f63f862 100644 --- a/unotools/inc/unotools/moduleoptions.hxx +++ b/unotools/inc/unotools/moduleoptions.hxx @@ -146,7 +146,6 @@ class UNOTOOLS_DLLPUBLIC SvtModuleOptions: public utl::detail::Options ::rtl::OUString GetFactoryName ( EFactory eFactory ) const; ::rtl::OUString GetFactoryShortName ( EFactory eFactory ) const; ::rtl::OUString GetFactoryStandardTemplate( EFactory eFactory ) const; - ::rtl::OUString GetFactoryWindowAttributes( EFactory eFactory ) const; ::rtl::OUString GetFactoryEmptyDocumentURL( EFactory eFactory ) const; ::rtl::OUString GetFactoryDefaultFilter ( EFactory eFactory ) const; sal_Bool IsDefaultFilterReadonly ( EFactory eFactory ) const; @@ -155,8 +154,6 @@ class UNOTOOLS_DLLPUBLIC SvtModuleOptions: public utl::detail::Options EFactory& eFactory ); void SetFactoryStandardTemplate( EFactory eFactory , const ::rtl::OUString& sTemplate ); - void SetFactoryWindowAttributes( EFactory eFactory , - const ::rtl::OUString& sAttributes); void SetFactoryDefaultFilter ( EFactory eFactory , const ::rtl::OUString& sFilter ); diff --git a/unotools/inc/unotools/startoptions.hxx b/unotools/inc/unotools/startoptions.hxx index 7c964960999b..464c2a433446 100644 --- a/unotools/inc/unotools/startoptions.hxx +++ b/unotools/inc/unotools/startoptions.hxx @@ -101,22 +101,6 @@ class UNOTOOLS_DLLPUBLIC SvtStartOptions: public utl::detail::Options //--------------------------------------------------------------------------------------------------------- /*-****************************************************************************************************//** - @short interface methods to get and set value of config key "org.openoffice.Office.Common/Start/..." - @descr These options describe internal states to enable/disable features of installed office. - The values are fixed at runtime - and implemented as readonly! - - IsIntroEnabled() : Setting, if the StarOffice Logo is displayed when starting StarOffice. - Default = true - - EnableIntro() : Use it to enable/disable the logo at startup. - - @seealso configuration package "org.openoffice.Office.Common/Start" - *//*-*****************************************************************************************************/ - - sal_Bool IsIntroEnabled ( ) const ; - void EnableIntro ( sal_Bool bState ) ; - - /*-****************************************************************************************************//** @short returns or set the connection URL of an office @descr Specifies the URL for an UNO connection. No default is given, the URL has to be entered manually by the admin/user. diff --git a/unotools/source/config/moduleoptions.cxx b/unotools/source/config/moduleoptions.cxx index c275a910510e..4ea66c92e006 100644 --- a/unotools/source/config/moduleoptions.cxx +++ b/unotools/source/config/moduleoptions.cxx @@ -1134,13 +1134,6 @@ sal_Bool SvtModuleOptions::IsModuleInstalled( EModule eModule ) const } //***************************************************************************************************************** -::rtl::OUString SvtModuleOptions::GetFactoryWindowAttributes( EFactory eFactory ) const -{ - ::osl::MutexGuard aGuard( impl_GetOwnStaticMutex() ); - return m_pDataContainer->GetFactoryWindowAttributes( eFactory ); -} - -//***************************************************************************************************************** ::rtl::OUString SvtModuleOptions::GetFactoryEmptyDocumentURL( EFactory eFactory ) const { ::osl::MutexGuard aGuard( impl_GetOwnStaticMutex() ); @@ -1184,14 +1177,6 @@ void SvtModuleOptions::SetFactoryStandardTemplate( EFactory eFacto } //***************************************************************************************************************** -void SvtModuleOptions::SetFactoryWindowAttributes( EFactory eFactory , - const ::rtl::OUString& sAttributes) -{ - ::osl::MutexGuard aGuard( impl_GetOwnStaticMutex() ); - m_pDataContainer->SetFactoryWindowAttributes( eFactory, sAttributes ); -} - -//***************************************************************************************************************** void SvtModuleOptions::SetFactoryDefaultFilter( EFactory eFactory, const ::rtl::OUString& sFilter ) { diff --git a/unotools/source/config/startoptions.cxx b/unotools/source/config/startoptions.cxx index edeab14539c0..cd1ce9c25b75 100644 --- a/unotools/source/config/startoptions.cxx +++ b/unotools/source/config/startoptions.cxx @@ -394,24 +394,6 @@ SvtStartOptions::~SvtStartOptions() //***************************************************************************************************************** // public method //***************************************************************************************************************** -sal_Bool SvtStartOptions::IsIntroEnabled() const -{ - MutexGuard aGuard( GetOwnStaticMutex() ); - return m_pDataContainer->IsIntroEnabled(); -} - -//***************************************************************************************************************** -// public method -//***************************************************************************************************************** -void SvtStartOptions::EnableIntro( sal_Bool bState ) -{ - MutexGuard aGuard( GetOwnStaticMutex() ); - m_pDataContainer->EnableIntro( bState ); -} - -//***************************************************************************************************************** -// public method -//***************************************************************************************************************** OUString SvtStartOptions::GetConnectionURL() const { MutexGuard aGuard( GetOwnStaticMutex() ); diff --git a/unusedcode.easy b/unusedcode.easy index 6f99d0cb7511..0379760f1e32 100644 --- a/unusedcode.easy +++ b/unusedcode.easy @@ -826,12 +826,9 @@ SfxFrameDescriptor::GetSize() const SfxFrameDescriptor::GetWallpaper() const SfxFrameDescriptor::GetWinBits() const SfxFrameDescriptor::SetURL(INetURLObject const&) -SfxFrameProperties::SfxFrameProperties(SfxFrameDescriptor const*) SfxHintPoster::SfxHintPoster() SfxImageItem::GetURL() const SfxImageItem::SfxImageItem(unsigned short, String const&) -SfxImageManager::SetImages(ToolBox&) -SfxImageManager::SetImages(ToolBox&, bool) SfxInPlaceClient::GetActiveWindow(SfxObjectShell*, com::sun::star::uno::Reference<com::sun::star::embed::XEmbeddedObject> const&) SfxInPlaceClient::IsObjectActive() const SfxItemPropertySetInfo::getMap() const @@ -853,10 +850,8 @@ SfxMedium::GetReferer() const SfxModuleArr_Impl::DeleteAndDestroy(unsigned short, unsigned short) SfxNavigatorWrapper::GetChildWindowId() SfxObjectShell::Count() -SfxObjectShell::CreateAndLoadObject(SfxItemSet const&, SfxFrame*) SfxObjectShell::DisconnectFromShared() SfxObjectShell::SetFlags(unsigned int) -SfxObjectShell::SetTemplate(unsigned char) SfxObjectVerbsControl::RegisterControl(unsigned short, SfxModule*) SfxOleDateProperty::SfxOleDateProperty(int, com::sun::star::util::Date const&) SfxOleString16Property::SfxOleString16Property(int, String const&) @@ -865,9 +860,7 @@ SfxPartChildWnd_Impl::GetChildWindowId() SfxPasswordDialog::SetMaxLen(unsigned short) SfxPopupWindow::LinkStubDelete(void*, void*) SfxPopupWindow::RemoveStatusListener(rtl::OUString const&) -SfxProgress::GetWaitMode() const SfxProgress::Lock() -SfxProgress::SetWaitMode(unsigned char) SfxRangeItem::SfxRangeItem(unsigned short, SvStream&) SfxRecordingFloatWrapper_Impl::GetChildWindowId() SfxRequest::IsRecording() const @@ -958,7 +951,6 @@ StatusBar::ShowItems() StatusBar::StatusBar(Window*, ResId const&) StgAvlIterator::Last() StgCache::Pos2Page(int) -StgDirEntry::Copy(StgDirEntry&) StgHeader::SetClassId(ClsId const&) StorageStream::ValidateMode(unsigned short, StgDirEntry*) const SvBasicPropertyDataControl::GetData() @@ -1148,10 +1140,8 @@ SvtMiscOptions::IsGetToolboxStyleReadOnly() const SvtMiscOptions::IsPluginsEnabledReadOnly() const SvtMiscOptions::IsTryUseODMADialogReadOnly() const SvtMiscOptions::SetPluginsEnabled(unsigned char) -SvtModuleOptions::GetFactoryWindowAttributes(SvtModuleOptions::EFactory) const SvtModuleOptions::GetFeatures() const SvtModuleOptions::GetModuleName(SvtModuleOptions::EFactory) const -SvtModuleOptions::SetFactoryWindowAttributes(SvtModuleOptions::EFactory, rtl::OUString const&) SvtPathOptions::GetPath(SvtPathOptions::Pathes) const SvtPathOptions::IsPathReadonly(SvtPathOptions::Pathes) const SvtPathOptions::SetPath(SvtPathOptions::Pathes, String const&) @@ -1166,8 +1156,6 @@ SvtScriptedTextHelper::GetTextHeight() const SvtScriptedTextHelper::GetTextWidth() const SvtSearchOptions::IsSearchForStyles() const SvtSecurityOptions::IsTrustedAuthorsEnabled() -SvtStartOptions::EnableIntro(unsigned char) -SvtStartOptions::IsIntroEnabled() const SvtStartOptions::SetConnectionURL(rtl::OUString const&) SvtSysLocaleOptions::GetUILocale() const SvtTabAppearanceCfg::SetDragMode(unsigned short) @@ -1553,7 +1541,6 @@ Window::PostUserEvent(unsigned long&, unsigned long, void*) WindowArrange::Arrange(unsigned short, Rectangle const&) WindowArrange::WindowArrange() WindowArrange::~WindowArrange() -WizardDialog::IsButtonFixedLineVisible() WrongRanges::Insert(WrongRanges const*, unsigned short, unsigned short, unsigned short) WrongRanges::Replace(WrongRange const&, unsigned short) WrongRanges::Replace(WrongRange const*, unsigned short, unsigned short) |