From 84a3b4d7635d0a5819e8b376efa4d47e74612739 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Fri, 19 Feb 2021 12:35:48 +0000 Subject: nRow argument is unused MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I9401d5af8e537423e7198435457107e12817fc09 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/111217 Tested-by: Jenkins Reviewed-by: Caolán McNamara --- include/svx/gridctrl.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/svx/gridctrl.hxx') diff --git a/include/svx/gridctrl.hxx b/include/svx/gridctrl.hxx index 7667d456bd00..5b13b328ae12 100644 --- a/include/svx/gridctrl.hxx +++ b/include/svx/gridctrl.hxx @@ -345,10 +345,10 @@ protected: All disabled entries will be removed before executing the menu, so be careful with separators near entries you probably wish to disable ... */ - virtual void PreExecuteRowContextMenu(sal_uInt16 nRow, PopupMenu& rMenu); + virtual void PreExecuteRowContextMenu(PopupMenu& rMenu); /** After executing the context menu for a row this method is called. */ - virtual void PostExecuteRowContextMenu(sal_uInt16 nRow, const PopupMenu& rMenu, sal_uInt16 nExecutionResult); + virtual void PostExecuteRowContextMenu(const PopupMenu& rMenu, sal_uInt16 nExecutionResult); /// @throws css::uno::RuntimeException void DataSourcePropertyChanged(const css::beans::PropertyChangeEvent& evt); @@ -367,7 +367,7 @@ protected: // DragSourceHelper overridables virtual void StartDrag( sal_Int8 nAction, const Point& rPosPixel ) override; - void executeRowContextMenu( sal_Int32 _nRow, const Point& _rPreferredPos ); + void executeRowContextMenu(const Point& _rPreferredPos); public: DbGridControl( -- cgit