summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2023-06-29 16:34:49 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2023-06-30 15:14:14 +0200
commitc33e81615c85eb9acd5956973e3bbc27ea068b41 (patch)
treed4061b481a75eab3d9d7140765adf16ebf79e201 /include
parent105f057f5b994b7d79a55ca719240839c2d45b54 (diff)
loplugin:unusedmethods
Change-Id: I8d3402a69237b665462e04440ad73fe29e2133db Reviewed-on: https://gerrit.libreoffice.org/c/core/+/153807 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/editeng/editeng.hxx1
-rw-r--r--include/svtools/colorcfg.hxx2
-rw-r--r--include/vcl/ctrl.hxx2
3 files changed, 1 insertions, 4 deletions
diff --git a/include/editeng/editeng.hxx b/include/editeng/editeng.hxx
index 85accc9d36e3..61d8e88bc593 100644
--- a/include/editeng/editeng.hxx
+++ b/include/editeng/editeng.hxx
@@ -367,7 +367,6 @@ public:
bool IsModified() const;
void SetModifyHdl( const Link<LinkParamNone*,void>& rLink );
- Link<LinkParamNone*,void> const & GetModifyHdl() const;
bool IsInSelectionMode() const;
diff --git a/include/svtools/colorcfg.hxx b/include/svtools/colorcfg.hxx
index 9810aac0393d..9e9d5bca7da8 100644
--- a/include/svtools/colorcfg.hxx
+++ b/include/svtools/colorcfg.hxx
@@ -44,7 +44,7 @@ enum ColorConfigEntry : int
WRITERTEXTGRID ,
WRITERFIELDSHADINGS ,
WRITERIDXSHADINGS ,
- WRITERDIRECTCURSOR ,
+ WRITERDIRECTCURSOR , // unused
WRITERSCRIPTINDICATOR,
WRITERSECTIONBOUNDARIES,
WRITERHEADERFOOTERMARK,
diff --git a/include/vcl/ctrl.hxx b/include/vcl/ctrl.hxx
index c71105731cb1..c922bcfd18ff 100644
--- a/include/vcl/ctrl.hxx
+++ b/include/vcl/ctrl.hxx
@@ -56,8 +56,6 @@ struct VCL_DLLPUBLIC ControlLayoutData
// returns the character index for corresponding to rPoint (in control coordinates)
// -1 is returned if no character is at that point
tools::Long GetIndexForPoint( const Point& rPoint ) const;
- // returns the number of lines in the result of GetDisplayText()
- tools::Long GetLineCount() const;
// returns the interval [start,end] of line nLine
// returns [-1,-1] for an invalid line
::Pair GetLineStartEnd( tools::Long nLine ) const;