]> git.sesse.net Git - vlc/commitdiff
plugin.cpp: on activation, set width and height in VLC configuration variables with...
authorDamien Fouilleul <damienf@videolan.org>
Thu, 27 Oct 2005 22:46:47 +0000 (22:46 +0000)
committerDamien Fouilleul <damienf@videolan.org>
Thu, 27 Oct 2005 22:46:47 +0000 (22:46 +0000)
activex/plugin.cpp

index de3228db39af7213aaff7c7486d06640c621bfd3..0cc3a7e336b209c0a9d22c7e2a4c0bbe3f81c2a6 100644 (file)
@@ -781,9 +781,9 @@ HRESULT VLCPlugin::onActivateInPlace(LPMSG lpMesg, HWND hwndParent, LPCRECT lprc
     /* set internal video width and height */
     vlc_value_t val;
     val.i_int = posRect.right-posRect.left;
-    VLC_VariableSet(_i_vlc, "width", val);
+    VLC_VariableSet(_i_vlc, "conf::width", val);
     val.i_int = posRect.bottom-posRect.top;
-    VLC_VariableSet(_i_vlc, "height", val);
+    VLC_VariableSet(_i_vlc, "conf::height", val);
 
     /* set internal video parent window */
     /* horrible cast there */