summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2024-11-22 14:38:02 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2024-11-22 20:03:48 +0100
commit437aaf54c6076c19aad80fdede7202b8083c07f0 (patch)
tree9a18aae2e03c2d89e581262972befed025d0b2d0 /vcl
parentd1e8e430db41e1b3e90332e6826ba71ccb8c6971 (diff)
loplugin:unusedmethods
Change-Id: I24666a7746f8920ddf84731f204f3e1a5b9b0c85 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/177024 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/inc/qt5/QtFrame.hxx1
-rw-r--r--vcl/inc/qt5/QtTools.hxx1
-rw-r--r--vcl/inc/salframe.hxx5
-rw-r--r--vcl/inc/unx/gtk/gtkframe.hxx1
-rw-r--r--vcl/qt5/QtFrame.cxx2
-rw-r--r--vcl/unx/gtk3/gtkframe.cxx7
6 files changed, 0 insertions, 17 deletions
diff --git a/vcl/inc/qt5/QtFrame.hxx b/vcl/inc/qt5/QtFrame.hxx
index 7867467b7bcf..efb534825e29 100644
--- a/vcl/inc/qt5/QtFrame.hxx
+++ b/vcl/inc/qt5/QtFrame.hxx
@@ -184,7 +184,6 @@ public:
virtual void GetWorkArea(AbsoluteScreenPixelRectangle& rRect) override;
virtual SalFrame* GetParent() const override;
virtual void SetModal(bool bModal) override;
- virtual bool GetModal() const override;
virtual void SetWindowState(const vcl::WindowData*) override;
virtual bool GetWindowState(vcl::WindowData*) override;
virtual void ShowFullScreen(bool bFullScreen, sal_Int32 nDisplay) override;
diff --git a/vcl/inc/qt5/QtTools.hxx b/vcl/inc/qt5/QtTools.hxx
index 6877b7b5d985..c1b2b75fff5f 100644
--- a/vcl/inc/qt5/QtTools.hxx
+++ b/vcl/inc/qt5/QtTools.hxx
@@ -155,7 +155,6 @@ QImage toQImage(const Image& rImage);
QMessageBox::Icon vclMessageTypeToQtIcon(VclMessageType eType);
QString vclMessageTypeToQtTitle(VclMessageType eType);
-int qtResponseTypeToVclResponseType(int ret);
/** Converts a string potentially containing a '~' character to indicate an accelerator
* to the Qt variant using '&' for the accelerator.
diff --git a/vcl/inc/salframe.hxx b/vcl/inc/salframe.hxx
index 0ea3fce1565b..8b239491d469 100644
--- a/vcl/inc/salframe.hxx
+++ b/vcl/inc/salframe.hxx
@@ -265,11 +265,6 @@ public:
{
}
- virtual bool GetModal() const
- {
- return false;
- }
-
// return true to indicate tooltips are shown natively, false otherwise
virtual bool ShowTooltip(const OUString& /*rHelpText*/, const tools::Rectangle& /*rHelpArea*/)
{
diff --git a/vcl/inc/unx/gtk/gtkframe.hxx b/vcl/inc/unx/gtk/gtkframe.hxx
index 5fbf4413105c..b8b10691843b 100644
--- a/vcl/inc/unx/gtk/gtkframe.hxx
+++ b/vcl/inc/unx/gtk/gtkframe.hxx
@@ -606,7 +606,6 @@ public:
virtual void PositionByToolkit(const tools::Rectangle& rRect, FloatWinPopupFlags nFlags) override;
virtual void SetModal(bool bModal) override;
- virtual bool GetModal() const override;
void HideTooltip();
void BlockTooltip();
void UnblockTooltip();
diff --git a/vcl/qt5/QtFrame.cxx b/vcl/qt5/QtFrame.cxx
index 9bbed032c334..d993c63e7762 100644
--- a/vcl/qt5/QtFrame.cxx
+++ b/vcl/qt5/QtFrame.cxx
@@ -626,8 +626,6 @@ void QtFrame::SetModal(bool bModal)
});
}
-bool QtFrame::GetModal() const { return isWindow() && windowHandle()->isModal(); }
-
void QtFrame::SetWindowState(const vcl::WindowData* pState)
{
QtInstance& rQtInstance = GetQtInstance();
diff --git a/vcl/unx/gtk3/gtkframe.cxx b/vcl/unx/gtk3/gtkframe.cxx
index 42243c60e965..f101834627c5 100644
--- a/vcl/unx/gtk3/gtkframe.cxx
+++ b/vcl/unx/gtk3/gtkframe.cxx
@@ -3132,13 +3132,6 @@ void GtkSalFrame::SetModal(bool bModal)
gtk_window_set_modal(GTK_WINDOW(m_pWindow), bModal);
}
-bool GtkSalFrame::GetModal() const
-{
- if (!m_pWindow)
- return false;
- return gtk_window_get_modal(GTK_WINDOW(m_pWindow));
-}
-
gboolean GtkSalFrame::signalTooltipQuery(GtkWidget*, gint /*x*/, gint /*y*/,
gboolean /*keyboard_mode*/, GtkTooltip *tooltip,
gpointer frame)