summaryrefslogtreecommitdiff
path: root/include/vcl
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-10-22 08:56:09 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-10-23 10:12:04 +0200
commit3b65ce7996c8cedcdb710275a0d1fb948b5d78bb (patch)
tree28dd1d63d79ebf7249f9a1f13fd24219fc5197b9 /include/vcl
parent4c1f44047aa680c2e2e84986353ab2b2f375f6f2 (diff)
loplugin:unusedmethods
Change-Id: I5fd081780d46fd30864830eea2956bad6dc3e222 Reviewed-on: https://gerrit.libreoffice.org/81360 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/vcl')
-rw-r--r--include/vcl/syswin.hxx2
-rw-r--r--include/vcl/toolkit/tabdlg.hxx4
-rw-r--r--include/vcl/treelist.hxx1
-rw-r--r--include/vcl/treelistbox.hxx1
-rw-r--r--include/vcl/window.hxx10
5 files changed, 0 insertions, 18 deletions
diff --git a/include/vcl/syswin.hxx b/include/vcl/syswin.hxx
index cb6d15d27ead..57ca00e619a7 100644
--- a/include/vcl/syswin.hxx
+++ b/include/vcl/syswin.hxx
@@ -285,8 +285,6 @@ public:
virtual void doDeferredInit(WinBits nBits);
// Screenshot interface
- virtual std::vector<OString> getAllPageUIXMLDescriptions() const;
- virtual bool selectPageByUIXMLDescription(const OString& rUIXMLDescription);
void createScreenshot(VirtualDevice& rOutput);
};
diff --git a/include/vcl/toolkit/tabdlg.hxx b/include/vcl/toolkit/tabdlg.hxx
index ae8aa931d79d..5d883b826a52 100644
--- a/include/vcl/toolkit/tabdlg.hxx
+++ b/include/vcl/toolkit/tabdlg.hxx
@@ -40,10 +40,6 @@ public:
virtual void dispose() override;
virtual void StateChanged( StateChangedType nStateChange ) override;
-
- // Screenshot interface
- virtual std::vector<OString> getAllPageUIXMLDescriptions() const override;
- virtual bool selectPageByUIXMLDescription(const OString& rUIXMLDescription) override;
};
#endif // INCLUDED_VCL_TABDLG_HXX
diff --git a/include/vcl/treelist.hxx b/include/vcl/treelist.hxx
index 15931d79f9d6..20045cb21804 100644
--- a/include/vcl/treelist.hxx
+++ b/include/vcl/treelist.hxx
@@ -113,7 +113,6 @@ class VCL_DLLPUBLIC SvTreeList final
);
VCL_DLLPRIVATE void ResortChildren( SvTreeListEntry* pParent );
- VCL_DLLPRIVATE void ReverseChildren( SvTreeListEntry* pParent );
SvTreeList(const SvTreeList&) = delete;
SvTreeList& operator= (const SvTreeList&) = delete;
diff --git a/include/vcl/treelistbox.hxx b/include/vcl/treelistbox.hxx
index 4dcd516cea22..f370d284e59f 100644
--- a/include/vcl/treelistbox.hxx
+++ b/include/vcl/treelistbox.hxx
@@ -549,7 +549,6 @@ protected:
void ImplEditEntry( SvTreeListEntry* pEntry );
bool AreChildrenTransient() const;
- void SetChildrenNotTransient();
void AdjustEntryHeightAndRecalc();
public:
diff --git a/include/vcl/window.hxx b/include/vcl/window.hxx
index 58dad46aeef2..071fe5f8bd26 100644
--- a/include/vcl/window.hxx
+++ b/include/vcl/window.hxx
@@ -1147,16 +1147,6 @@ public:
void SetHelpId( const OString& );
const OString& GetHelpId() const;
- /** String ID of this window for the purpose of creating a screenshot
-
- In default implementation this ID is the same as HelpId. Override this method
- in windows (dialogs,tabpages) that need different IDs for different configurations
- they can be in
-
- @return screenshot ID of this window
- */
- virtual OString GetScreenshotId() const;
-
vcl::Window* FindWindow( const Point& rPos ) const;
sal_uInt16 GetChildCount() const;