diff options
Diffstat (limited to 'vcl/unx/gtk/window/gtksalframe.cxx')
-rw-r--r-- | vcl/unx/gtk/window/gtksalframe.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/unx/gtk/window/gtksalframe.cxx b/vcl/unx/gtk/window/gtksalframe.cxx index 4a658cb06928..e39e7682efaf 100644 --- a/vcl/unx/gtk/window/gtksalframe.cxx +++ b/vcl/unx/gtk/window/gtksalframe.cxx @@ -475,7 +475,7 @@ void GtkSalFrame::doKeyCallback( guint state, if( bDown ) { bool bHandled = CallCallback( SALEVENT_KEYINPUT, &aEvent ); - // #i46889# copy AlternatKeyCode handling from generic plugin + // #i46889# copy AlternateKeyCode handling from generic plugin if( ! bHandled ) { KeyAlternate aAlternate = GetAlternateKeyCode( aEvent.mnCode ); @@ -484,7 +484,7 @@ void GtkSalFrame::doKeyCallback( guint state, aEvent.mnCode = aAlternate.nKeyCode; if( aAlternate.nCharCode ) aEvent.mnCharCode = aAlternate.nCharCode; - bHandled = CallCallback( SALEVENT_KEYINPUT, &aEvent ); + CallCallback( SALEVENT_KEYINPUT, &aEvent ); } } if( bSendRelease && ! aDel.isDeleted() ) |