summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-11-27 09:32:52 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-11-28 08:27:56 +0100
commit3abf4b91dad8fa549457e74185c000e06ba5f019 (patch)
tree55a8c9e0f2f4e2143c431154f789e418003e4c13 /include
parentb15b1a2a90fa4c239ff8a6a33e73ff50ea422abf (diff)
loplugin:unusedmethods
Change-Id: Idbdf2d5d12fad894a3dfc3a86cae839502f42cf6 Reviewed-on: https://gerrit.libreoffice.org/64114 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/sfx2/tabdlg.hxx10
-rw-r--r--include/svtools/ivctrl.hxx1
-rw-r--r--include/vcl/vclmedit.hxx1
3 files changed, 0 insertions, 12 deletions
diff --git a/include/sfx2/tabdlg.hxx b/include/sfx2/tabdlg.hxx
index 146a443e5153..0719e6cb61df 100644
--- a/include/sfx2/tabdlg.hxx
+++ b/include/sfx2/tabdlg.hxx
@@ -131,9 +131,6 @@ public:
CreateTabPage pCreateFunc, // != 0
GetTabPageRanges pRangesFunc); // can be 0
- sal_uInt16 AddTabPage ( const OString &rName, // Name of the label for the page in the notebook .ui
- sal_uInt16 nPageCreateId ); // Identifier of the Factory Method to create the page
-
void AddTabPage( sal_uInt16 nId,
const OUString &rRiderText,
CreateTabPage pCreateFunc, // != 0
@@ -179,21 +176,14 @@ public:
const CancelButton& GetCancelButton() const { return *m_pCancelBtn; }
CancelButton& GetCancelButton() { return *m_pCancelBtn; }
- void RemoveStandardButton();
-
short Execute() override;
bool StartExecuteAsync( VclAbstractDialog::AsyncContext &rCtx ) override;
void Start();
const SfxItemSet* GetExampleSet() const { return m_pExampleSet; }
- void SetApplyHandler(const Link<Button*,void>& _rHdl);
-
SAL_DLLPRIVATE void Start_Impl();
- //calls Ok without closing dialog
- bool Apply();
-
virtual FactoryFunction GetUITestFactory() const override;
// Screenshot interface
virtual std::vector<OString> getAllPageUIXMLDescriptions() const override;
diff --git a/include/svtools/ivctrl.hxx b/include/svtools/ivctrl.hxx
index ccdadaf7dee1..2f4f2f63ae29 100644
--- a/include/svtools/ivctrl.hxx
+++ b/include/svtools/ivctrl.hxx
@@ -268,7 +268,6 @@ public:
void SetEntryTextMode( SvxIconChoiceCtrlTextMode eMode, SvxIconChoiceCtrlEntry* pEntry );
#endif
- Point GetPixelPos( const Point& rPosLogic ) const;
void SetSelectionMode( SelectionMode eMode );
tools::Rectangle GetBoundingBox( SvxIconChoiceCtrlEntry* pEntry ) const;
diff --git a/include/vcl/vclmedit.hxx b/include/vcl/vclmedit.hxx
index eaffca059a0d..df57a4767eda 100644
--- a/include/vcl/vclmedit.hxx
+++ b/include/vcl/vclmedit.hxx
@@ -152,7 +152,6 @@ public:
void SetRightToLeft( bool bRightToLeft );
void SaveValue() { aSaveValue = GetText(); }
- const OUString& GetSavedValue() const { return aSaveValue; }
void SetModifyHdl( const Link<Edit&,void>& rLink ) override { aModifyHdlLink = rLink; }
const Link<Edit&,void>& GetModifyHdl() const override { return aModifyHdlLink; }