diff options
author | Noel Grandin <noel@peralex.com> | 2016-01-12 13:41:12 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-01-13 08:44:45 +0200 |
commit | 38c23520d40749ff21b6b1ed5f5c0375d40fe1fc (patch) | |
tree | be2126093be7d32e4f63d405f87fc6c063776e45 /include/sfx2/app.hxx | |
parent | 2fc2f752447725ece32ce55d5db21b912902b3cf (diff) |
loplugin:unusedmethods unused return value in include/sfx2
Change-Id: Id4017bdfe18f8224d28a9f787865c7a880aeeed8
Diffstat (limited to 'include/sfx2/app.hxx')
-rw-r--r-- | include/sfx2/app.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/sfx2/app.hxx b/include/sfx2/app.hxx index d00aa953b001..ed618d974854 100644 --- a/include/sfx2/app.hxx +++ b/include/sfx2/app.hxx @@ -175,10 +175,10 @@ public: css::script::XLibraryContainer * GetDialogContainer(); css::script::XLibraryContainer * GetBasicContainer(); static StarBASIC* GetBasic(); - sal_uInt16 SaveBasicAndDialogContainer() const; + void SaveBasicAndDialogContainer() const; // misc. - bool GetOptions(SfxItemSet &); + void GetOptions(SfxItemSet &); void SetOptions(const SfxItemSet &); virtual void Invalidate(sal_uInt16 nId = 0) override; void NotifyEvent(const SfxEventHint& rEvent, bool bSynchron = true ); @@ -189,7 +189,7 @@ public: SAL_DLLPRIVATE SfxDispatcher* GetDispatcher_Impl(); SAL_DLLPRIVATE void SetOptions_Impl(const SfxItemSet &); - SAL_DLLPRIVATE bool Initialize_Impl(); + SAL_DLLPRIVATE void Initialize_Impl(); SAL_DLLPRIVATE SfxAppData_Impl* Get_Impl() const { return pAppData_Impl; } |