X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fgui%2Fskins2%2Fx11%2Fx11_loop.cpp;h=cc52fa699762c62fd287eb78fec11e9fadeaab96;hb=4b4bd31f0a522c3dc58c4b80dfb92563e522f525;hp=f0eea3b6e9088e9d7e231007fa356d7cba5e7a43;hpb=fe087a38282e93addb25fa9598393e40ea233b09;p=vlc diff --git a/modules/gui/skins2/x11/x11_loop.cpp b/modules/gui/skins2/x11/x11_loop.cpp index f0eea3b6e9..cc52fa6997 100644 --- a/modules/gui/skins2/x11/x11_loop.cpp +++ b/modules/gui/skins2/x11/x11_loop.cpp @@ -5,7 +5,7 @@ * $Id$ * * Authors: Cyril Deguet - * Olivier Teulière + * Olivier Teulière * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -19,7 +19,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ #ifdef X11_SKINS @@ -77,6 +77,8 @@ X11Loop::X11Loop( intf_thread_t *pIntf, X11Display &rDisplay ): keysymToVlcKey[XK_End] = KEY_END; keysymToVlcKey[XK_Prior] = KEY_PAGEUP; keysymToVlcKey[XK_Next] = KEY_PAGEDOWN; + keysymToVlcKey[XK_Delete] = KEY_DELETE; + keysymToVlcKey[XK_Insert] = KEY_INSERT; } @@ -173,7 +175,7 @@ void X11Loop::handleX11Event() if( !pWin ) { - msg_Dbg( getIntf(), "No associated generic window !!" ); + msg_Warn( getIntf(), "no associated generic window" ); return; } @@ -368,7 +370,7 @@ void X11Loop::handleX11Event() ((X11Factory*)pOsFactory)->m_dndMap[event.xany.window]; if( !pDnd ) { - msg_Err( getIntf(), "No associated D&D object !!" ); + msg_Err( getIntf(), "no associated D&D object" ); return; }