diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-03-25 15:55:37 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-03-26 07:30:21 +0100 |
commit | 6c0f5f7f2a6cc122a738deb0a17353cca1cd5c7e (patch) | |
tree | fead70c051edcf671e43555498d710430dd0cbce /include | |
parent | 7030a5860f99378ba951ecb8e2cc0425af63b741 (diff) |
loplugin:unusedmethods
Change-Id: I8bbf439d69a330a9ad28ff52cc49a9fec2c12500
Reviewed-on: https://gerrit.libreoffice.org/69684
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/sfx2/basedlgs.hxx | 4 | ||||
-rw-r--r-- | include/sfx2/tabdlg.hxx | 7 | ||||
-rw-r--r-- | include/svx/dbaexchange.hxx | 21 | ||||
-rw-r--r-- | include/vcl/svlbitm.hxx | 1 | ||||
-rw-r--r-- | include/vcl/treelistbox.hxx | 1 |
5 files changed, 0 insertions, 34 deletions
diff --git a/include/sfx2/basedlgs.hxx b/include/sfx2/basedlgs.hxx index f58feba3cba2..311d7d397f06 100644 --- a/include/sfx2/basedlgs.hxx +++ b/include/sfx2/basedlgs.hxx @@ -142,9 +142,7 @@ protected: virtual ~SfxModelessDialogController() override; public: - void FillInfo(SfxChildWinInfo&) const; void Initialize (SfxChildWinInfo const * pInfo); - void DeInit(); virtual void Close() override; virtual void EndDialog() override; virtual void Activate() override; @@ -221,8 +219,6 @@ public: void SetTabPage(SfxTabPage* pTabPage); SfxTabPage* GetTabPage() const { return pImpl->m_pSfxPage; } - OKButton* GetOKButton() const { return pOKBtn; } - private: VclPtr<OKButton> pOKBtn; VclPtr<CancelButton> pCancelBtn; diff --git a/include/sfx2/tabdlg.hxx b/include/sfx2/tabdlg.hxx index 3b858cf4a7f5..0f6babf2774a 100644 --- a/include/sfx2/tabdlg.hxx +++ b/include/sfx2/tabdlg.hxx @@ -134,7 +134,6 @@ public: CreateTabPage pCreateFunc, // != 0 sal_uInt16 nPos = TAB_APPEND); - void RemoveTabPage( const OString& rName ); // Name of the label for the page in the notebook .ui void RemoveTabPage( sal_uInt16 nId ); void SetCurPageId(sal_uInt16 nId) @@ -169,14 +168,8 @@ public: void SetInputSet( const SfxItemSet* pInSet ); const SfxItemSet* GetOutputItemSet() const { return m_pOutSet.get(); } - const PushButton& GetOKButton() const { return *m_pOKBtn; } - PushButton& GetOKButton() { return *m_pOKBtn; } - const CancelButton& GetCancelButton() const { return *m_pCancelBtn; } - CancelButton& GetCancelButton() { return *m_pCancelBtn; } - short Execute() override; bool StartExecuteAsync( VclAbstractDialog::AsyncContext &rCtx ) override; - void Start(); const SfxItemSet* GetExampleSet() const { return m_pExampleSet; } diff --git a/include/svx/dbaexchange.hxx b/include/svx/dbaexchange.hxx index ffae51c0849a..1a5927f84dfc 100644 --- a/include/svx/dbaexchange.hxx +++ b/include/svx/dbaexchange.hxx @@ -53,15 +53,6 @@ namespace svx class SAL_WARN_UNUSED SVX_DLLPUBLIC OColumnTransferable final : public TransferableHelper { public: - /** construct the transferable - */ - OColumnTransferable( - const OUString& _rDatasource - ,const OUString& _rCommand - ,const OUString& _rFieldName - ,ColumnTransferFormatFlags _nFormats - ); - /** construct the transferable from a data access descriptor Note that some of the aspects, in particular all which cannot be represented @@ -135,18 +126,6 @@ namespace svx static ODataAccessDescriptor extractColumnDescriptor(const TransferableDataHelper& _rData); - /** adds the data contained in the object to the given data container - <p>This method helps you treating this class as simple container class:<br/> - At the moment, it is a data container and a transferable. - Using <method>addDataToContainer</method>, you can treat the class as dumb data container, - doing the Drag'n'Drop with a TransferDataContainer instance (which may contain - additional formats)</p> - @TODO - split this class into a two separate classes: one for the data container aspect, one for - the transfer aspect - */ - void addDataToContainer( TransferDataContainer* _pContainer ); - private: // TransferableHelper overridables virtual void AddSupportedFormats() override; diff --git a/include/vcl/svlbitm.hxx b/include/vcl/svlbitm.hxx index c5e478a6d539..e5c5f6dd840c 100644 --- a/include/vcl/svlbitm.hxx +++ b/include/vcl/svlbitm.hxx @@ -190,7 +190,6 @@ public: void SetStateUnchecked(); void SetStateTristate(); void SetStateHilighted(bool bHilight); - void SetStateInvisible(); SvLBoxButtonKind GetKind() const { return eKind; } diff --git a/include/vcl/treelistbox.hxx b/include/vcl/treelistbox.hxx index 7031c0954acd..b90ee4b9fdb4 100644 --- a/include/vcl/treelistbox.hxx +++ b/include/vcl/treelistbox.hxx @@ -496,7 +496,6 @@ public: void EnableCellFocus(); // For overwriting accessible role for all entries - normally 0, so each entry can be different - void SetAllEntriesAccessibleRoleType( SvTreeAccRoleType n ) { nAllItemAccRoleType = n; } SvTreeAccRoleType GetAllEntriesAccessibleRoleType() const { return nAllItemAccRoleType; } SvTreeFlags GetTreeFlags() const {return nTreeFlags;} |