summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-01-13 09:26:16 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-01-13 09:16:59 +0100
commitd5047c4a1cbae1cb2b57ed435ecd63e6817506d3 (patch)
tree1065eef1ad9f0bfea732d58a3a554da0f36cff7c /extensions
parent748e354af826f2439982b69ffa99dce68378d1f1 (diff)
loplugin:unusedmethods
Change-Id: I4eae284cf763b260dd9349bf8d31f46612916de1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86654 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/propctrlr/inspectorhelpwindow.cxx10
-rw-r--r--extensions/source/propctrlr/inspectorhelpwindow.hxx4
2 files changed, 0 insertions, 14 deletions
diff --git a/extensions/source/propctrlr/inspectorhelpwindow.cxx b/extensions/source/propctrlr/inspectorhelpwindow.cxx
index beaecec3502a..427366e25f91 100644
--- a/extensions/source/propctrlr/inspectorhelpwindow.cxx
+++ b/extensions/source/propctrlr/inspectorhelpwindow.cxx
@@ -47,16 +47,6 @@ namespace pcr
m_nMaxLines = nMaxLines;
}
- long InspectorHelpWindow::impl_getMinimalTextWindowHeight()
- {
- return m_xHelpText->get_height_rows(m_nMinLines);
- }
-
- long InspectorHelpWindow::impl_getMaximalTextWindowHeight()
- {
- return m_xHelpText->get_height_rows(m_nMaxLines);
- }
-
} // namespace pcr
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/extensions/source/propctrlr/inspectorhelpwindow.hxx b/extensions/source/propctrlr/inspectorhelpwindow.hxx
index 47041e33e0fa..b67fee9df216 100644
--- a/extensions/source/propctrlr/inspectorhelpwindow.hxx
+++ b/extensions/source/propctrlr/inspectorhelpwindow.hxx
@@ -43,10 +43,6 @@ namespace pcr
void Show(bool bShow) { m_xHelpFrame->set_visible(bShow); }
bool IsVisible() const { return m_xHelpFrame->get_visible(); }
-
- private:
- long impl_getMinimalTextWindowHeight();
- long impl_getMaximalTextWindowHeight();
};
} // namespace pcr