summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-07-01 09:55:33 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-07-03 12:33:12 +0200
commite6391dde04044147a1ac13acdccf797f3872fc6b (patch)
tree952fbf1e3fb6e268a407cb87c88c7285be43cfaf /vcl
parent18713e10451b017784c7a1f783612074c5f84c42 (diff)
gtk+ FIXMEs vs. loplugin:casttovoid
Lets assume the functionality will actually be implemented and the parameters be used. Change-Id: I8500b0f8cbd336132a357423b3e1651d52e605cc Reviewed-on: https://gerrit.libreoffice.org/39455 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/unx/gtk3/gtk3gtkdata.cxx3
-rw-r--r--vcl/unx/gtk3/gtk3gtkframe.cxx3
2 files changed, 2 insertions, 4 deletions
diff --git a/vcl/unx/gtk3/gtk3gtkdata.cxx b/vcl/unx/gtk3/gtk3gtkdata.cxx
index f59034a50657..b48084660caa 100644
--- a/vcl/unx/gtk3/gtk3gtkdata.cxx
+++ b/vcl/unx/gtk3/gtk3gtkdata.cxx
@@ -116,10 +116,9 @@ void signalMonitorsChanged( GdkScreen* pScreen, gpointer data )
}
-GdkFilterReturn GtkSalDisplay::filterGdkEvent( GdkXEvent* sys_event )
+GdkFilterReturn GtkSalDisplay::filterGdkEvent( GdkXEvent* )
{
(void) this; // loplugin:staticmethods
- (void) sys_event;
//FIXME: implement filterGdkEvent ...
return GDK_FILTER_CONTINUE;
}
diff --git a/vcl/unx/gtk3/gtk3gtkframe.cxx b/vcl/unx/gtk3/gtk3gtkframe.cxx
index 7cfaf9b2c04a..5236ee407f04 100644
--- a/vcl/unx/gtk3/gtk3gtkframe.cxx
+++ b/vcl/unx/gtk3/gtk3gtkframe.cxx
@@ -1280,9 +1280,8 @@ void GtkSalFrame::Init( SalFrame* pParent, SalFrameStyleFlags nStyle )
}
}
-GdkNativeWindow GtkSalFrame::findTopLevelSystemWindow( GdkNativeWindow aWindow )
+GdkNativeWindow GtkSalFrame::findTopLevelSystemWindow( GdkNativeWindow )
{
- (void)aWindow;
//FIXME: no findToplevelSystemWindow
return 0;
}