diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2012-01-27 16:51:04 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2012-01-28 11:05:47 +0100 |
commit | 04b9c2f633f0be1b676933943bdd0b1dc58b5471 (patch) | |
tree | 4084dcd0575cab68bf41b6a87f1d3aeb35c75468 /vcl/unx/gtk | |
parent | 2b507836fc88f294ef55652174b66dc706125599 (diff) |
Remove SalDisplay::GetKeyboardName
This method seems to be useless. The return value (keyboard name) isn't
used at any point. And I don't see any point in this method where some
implicit call is done to refresh mappings...
Diffstat (limited to 'vcl/unx/gtk')
-rw-r--r-- | vcl/unx/gtk/app/gtkdata.cxx | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/vcl/unx/gtk/app/gtkdata.cxx b/vcl/unx/gtk/app/gtkdata.cxx index 3685d1156110..b1bcf8eb8d8f 100644 --- a/vcl/unx/gtk/app/gtkdata.cxx +++ b/vcl/unx/gtk/app/gtkdata.cxx @@ -129,12 +129,7 @@ extern "C" { void signalKeysChanged( GdkKeymap*, gpointer data ) { GtkSalDisplay* pDisp = (GtkSalDisplay*)data; -#if !GTK_CHECK_VERSION(3,0,0) - pDisp->GetKeyboardName(true); -#else - (void)pDisp; -#warning FIXME: impl. / check signalKeysChanged ... -#endif +#warning signalKeysChanged called } void signalScreenSizeChanged( GdkScreen* pScreen, gpointer data ) |