]> git.sesse.net Git - vlc/blobdiff - modules/gui/skins2/win32/win32_factory.cpp
missing const to non-const cast
[vlc] / modules / gui / skins2 / win32 / win32_factory.cpp
index 4edbb4cb6e92462c97cac811632f5fc6ec3ea3a1..d3733eb620b0a6837735aad9663c4d9825949aa0 100644 (file)
@@ -237,9 +237,9 @@ void Win32Factory::minimize()
     ShowWindow( m_hParentWindow, SW_MINIMIZE );
 }
 
-OSTimer *Win32Factory::createOSTimer( const Callback &rCallback )
+OSTimer *Win32Factory::createOSTimer( CmdGeneric &rCmd )
 {
-    return new Win32Timer( getIntf(), rCallback, m_hParentWindow );
+    return new Win32Timer( getIntf(), rCmd, m_hParentWindow );
 }