diff options
author | Noel Grandin <noel@peralex.com> | 2015-07-17 15:50:48 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-07-20 10:57:07 +0200 |
commit | 600ed089e242a80f5fbf3131b63995eed9d33f3f (patch) | |
tree | fbeb02d49350956678688cb793dca7137f1434a9 /include | |
parent | dcbbe7741a08f6076f9e020f90cbb730c1edafb9 (diff) |
loplugin:unusedmethods sfx2
Change-Id: I40be06a4859a38ef64b6267515917f625a5f176d
Diffstat (limited to 'include')
-rw-r--r-- | include/sfx2/app.hxx | 1 | ||||
-rw-r--r-- | include/sfx2/docfac.hxx | 1 | ||||
-rw-r--r-- | include/sfx2/docfile.hxx | 1 | ||||
-rw-r--r-- | include/sfx2/progress.hxx | 3 | ||||
-rw-r--r-- | include/sfx2/sfxbasemodel.hxx | 2 | ||||
-rw-r--r-- | include/sfx2/tbxctrl.hxx | 7 |
6 files changed, 2 insertions, 13 deletions
diff --git a/include/sfx2/app.hxx b/include/sfx2/app.hxx index 1cb6fd7487ad..77e626734149 100644 --- a/include/sfx2/app.hxx +++ b/include/sfx2/app.hxx @@ -119,7 +119,6 @@ class SFX2_DLLPUBLIC SfxApplication: public SfxShell DECL_DLLPRIVATE_LINK_TYPED( GlobalBasicErrorHdl_Impl, StarBASIC*, bool ); - static SfxApplication* Create(); void Deinitialize(); public: diff --git a/include/sfx2/docfac.hxx b/include/sfx2/docfac.hxx index 02eb3451b5f2..ea8d0e8b5060 100644 --- a/include/sfx2/docfac.hxx +++ b/include/sfx2/docfac.hxx @@ -79,7 +79,6 @@ public: SfxModule* GetModule() const; SAL_DLLPRIVATE void SetModule_Impl( SfxModule* ); - SAL_DLLPRIVATE static void UpdateFilterContainers_Impl(); SAL_DLLPRIVATE sal_uInt16 GetViewNo_Impl( const sal_uInt16 i_nViewId, const sal_uInt16 i_nFallback ) const; private: diff --git a/include/sfx2/docfile.hxx b/include/sfx2/docfile.hxx index 338986e2c0ea..d5404e254404 100644 --- a/include/sfx2/docfile.hxx +++ b/include/sfx2/docfile.hxx @@ -63,7 +63,6 @@ class SFX2_DLLPUBLIC SfxMedium : public SvRefBase SAL_DLLPRIVATE void CloseInStream_Impl(); SAL_DLLPRIVATE bool CloseOutStream_Impl(); SAL_DLLPRIVATE void CloseStreams_Impl(); - DECL_DLLPRIVATE_STATIC_LINK( SfxMedium, UCBHdl_Impl, sal_uInt32 * ); SAL_DLLPRIVATE void SetEncryptionDataToStorage_Impl(); diff --git a/include/sfx2/progress.hxx b/include/sfx2/progress.hxx index 4a618c5cc76b..b1c05e3bcc27 100644 --- a/include/sfx2/progress.hxx +++ b/include/sfx2/progress.hxx @@ -62,9 +62,6 @@ public: static SfxProgress* GetActiveProgress( SfxObjectShell *pDocSh = 0 ); static void EnterLock(); static void LeaveLock(); - - DECL_DLLPRIVATE_STATIC_LINK( SfxProgress, SetStateHdl, PlugInLoadStatus* ); - DECL_DLLPRIVATE_STATIC_LINK( SfxProgress, DefaultBindingProgress, SvProgressArg* ); }; #endif diff --git a/include/sfx2/sfxbasemodel.hxx b/include/sfx2/sfxbasemodel.hxx index 497878fe3335..a19852e158dc 100644 --- a/include/sfx2/sfxbasemodel.hxx +++ b/include/sfx2/sfxbasemodel.hxx @@ -814,9 +814,7 @@ public: SAL_DLLPRIVATE bool impl_isDisposed() const ; bool IsInitialized() const; - bool IsDisposed() const { return impl_isDisposed(); } void MethodEntryCheck( const bool i_mustBeInitialized ) const; - ::osl::Mutex& getMutex() const { return m_aMutex; } css::uno::Reference < css::container::XIndexAccess > SAL_CALL getViewData() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; void SAL_CALL setViewData( const css::uno::Reference < css::container::XIndexAccess >& aData ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; diff --git a/include/sfx2/tbxctrl.hxx b/include/sfx2/tbxctrl.hxx index 7632ca2baa7d..2ceb70485e21 100644 --- a/include/sfx2/tbxctrl.hxx +++ b/include/sfx2/tbxctrl.hxx @@ -273,7 +273,6 @@ public: class SfxDragToolBoxControl_Impl : public SfxToolBoxControl { public: - SFX_DECL_TOOLBOX_CONTROL(); SfxDragToolBoxControl_Impl( sal_uInt16 nId, ToolBox& rBox ); virtual VclPtr<vcl::Window> CreateItemWindow( vcl::Window *pParent ) SAL_OVERRIDE; virtual void Select(sal_uInt16 nSelectModifier) SAL_OVERRIDE; @@ -319,11 +318,10 @@ protected: class SfxReloadToolBoxControl_Impl : public SfxToolBoxControl { - protected: +protected: virtual void Select(sal_uInt16 nSelectModifier ) SAL_OVERRIDE; - public: - SFX_DECL_TOOLBOX_CONTROL(); +public: SfxReloadToolBoxControl_Impl( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rBox ); }; @@ -346,7 +344,6 @@ protected: virtual void Select(sal_uInt16 nSelectModifier) SAL_OVERRIDE; virtual void StateChanged( sal_uInt16 nSID, SfxItemState eState, const SfxPoolItem* pState ) SAL_OVERRIDE; public: - SFX_DECL_TOOLBOX_CONTROL(); SfxAddonsToolBoxControl_Impl( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rBox ); virtual ~SfxAddonsToolBoxControl_Impl(); }; |