]> git.sesse.net Git - vlc/blobdiff - modules/gui/skins2/src/top_window.cpp
For consistency, remove references to vlc from libvlc
[vlc] / modules / gui / skins2 / src / top_window.cpp
index a0c55aa0cd8ecd3c86591dca4c2b333c2982156e..5089b6ac3e338e9c822cc30b9d9a1d4605a9bee1 100644 (file)
@@ -253,7 +253,7 @@ void TopWindow::processEvent( EvtKey &rEvtKey )
             val.i_int |= KEY_MODIFIER_SHIFT;
         }
 
-        var_Set( getIntf()->p_vlc, "key-pressed", val );
+        var_Set( getIntf()->p_libvlc, "key-pressed", val );
     }
 
     // Always store the modifier, which can be needed for scroll events
@@ -298,7 +298,7 @@ void TopWindow::processEvent( EvtScroll &rEvtScroll )
         // Add the modifiers
         val.i_int |= m_currModifier;
 
-        var_Set( getIntf()->p_vlc, "key-pressed", val );
+        var_Set( getIntf()->p_libvlc, "key-pressed", val );
     }
 }