diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-04-12 12:19:04 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-04-12 14:50:16 +0200 |
commit | 3df141b2084d3abc1587ef24d2b371b779bb3d50 (patch) | |
tree | 2d24947c36901ec68ad0be2d85fd55d4542e1006 /include | |
parent | 7811a0e581ca34f59daf4210c568f818d8c9dfdd (diff) |
loplugin:unusedmethods
Change-Id: Ie90e53583484ee4f378ec92634adf3be7cd9ecbb
Reviewed-on: https://gerrit.libreoffice.org/70650
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/sfx2/basedlgs.hxx | 14 | ||||
-rw-r--r-- | include/sfx2/tabdlg.hxx | 7 | ||||
-rw-r--r-- | include/vcl/transfer.hxx | 1 |
3 files changed, 0 insertions, 22 deletions
diff --git a/include/sfx2/basedlgs.hxx b/include/sfx2/basedlgs.hxx index 6706010c6c51..d04cbb44a998 100644 --- a/include/sfx2/basedlgs.hxx +++ b/include/sfx2/basedlgs.hxx @@ -43,7 +43,6 @@ class Timer; class SFX2_DLLPUBLIC SfxModalDialog: public ModalDialog { OUString aExtraData; - const SfxItemSet* pInputSet; std::unique_ptr<SfxItemSet> pOutputSet; private: @@ -58,16 +57,10 @@ protected: SfxModalDialog(vcl::Window *pParent, const OUString& rID, const OUString& rUIXMLDescription); OUString& GetExtraData() { return aExtraData; } - void CreateOutputItemSet( const SfxItemSet& rInput ); - void SetInputSet( const SfxItemSet* pInSet ) { pInputSet = pInSet; } - SfxItemSet* GetOutputSetImpl() { return pOutputSet.get(); } public: virtual ~SfxModalDialog() override; virtual void dispose() override; - - const SfxItemSet* GetOutputItemSet() const { return pOutputSet.get(); } - const SfxItemSet* GetInputItemSet() const { return pInputSet; } }; // class SfxModelessDialog -------------------------------------------------- @@ -195,13 +188,6 @@ public: // class SfxNoLayoutSingleTabDialog -------------------------------------------------- -struct SingleTabDlgImpl -{ - VclPtr<SfxTabPage> m_pSfxPage; - - SingleTabDlgImpl(); -}; - typedef const sal_uInt16* (*GetTabPageRanges)(); // provides international Which values class SFX2_DLLPUBLIC SfxOkDialogController : public SfxDialogController diff --git a/include/sfx2/tabdlg.hxx b/include/sfx2/tabdlg.hxx index 7527fa519a3b..d4eb1fb71ae1 100644 --- a/include/sfx2/tabdlg.hxx +++ b/include/sfx2/tabdlg.hxx @@ -127,16 +127,10 @@ public: CreateTabPage pCreateFunc, // != 0 sal_uInt16 nPos = TAB_APPEND); - void RemoveTabPage( sal_uInt16 nId ); - void SetCurPageId(sal_uInt16 nId) { m_nAppPageId = nId; } - void SetCurPageId(const OString& rName) - { - m_nAppPageId = m_pTabCtrl->GetPageId(rName); - } sal_uInt16 GetCurPageId() const { return m_pTabCtrl->GetCurPageId(); @@ -158,7 +152,6 @@ public: // may provide local slots converted by Map const sal_uInt16* GetInputRanges( const SfxItemPool& ); - void SetInputSet( const SfxItemSet* pInSet ); const SfxItemSet* GetOutputItemSet() const { return m_pOutSet.get(); } short Execute() override; diff --git a/include/vcl/transfer.hxx b/include/vcl/transfer.hxx index 7b5fb5ea9618..3e1c4ee5b325 100644 --- a/include/vcl/transfer.hxx +++ b/include/vcl/transfer.hxx @@ -492,7 +492,6 @@ public: void CopyINetBookmark( const INetBookmark& rBkmk ); void CopyString( const OUString& rStr ); void CopyString( SotClipboardFormatId nFmt, const OUString& rStr ); - void CopyAny( SotClipboardFormatId nFmt, const css::uno::Any& rAny ); void CopyByteString( SotClipboardFormatId nFormatId, const OString& rStr ); void CopyAnyData( SotClipboardFormatId nFormatId, const sal_Char* pData, sal_uLong nLen ); |