]> git.sesse.net Git - vlc/commitdiff
Compile fix
authorChristophe Mutricy <xtophe@videolan.org>
Sun, 25 Feb 2007 22:42:49 +0000 (22:42 +0000)
committerChristophe Mutricy <xtophe@videolan.org>
Sun, 25 Feb 2007 22:42:49 +0000 (22:42 +0000)
modules/gui/skins2/win32/win32_factory.cpp

index bb03baa6286b83493091632e13fcf634ff963162..be42a67d23aeaf8d2a61c40add41bd39312b3935 100644 (file)
@@ -370,8 +370,7 @@ SkinsRect Win32Factory::getWorkArea() const
     RECT r;
     SystemParametersInfo( SPI_GETWORKAREA, 0, &r, 0 );
     // Fill a Rect object
-    SkinsRect SkinsRect( r.left, r.top, r.right, r.bottom );
-    return rect;
+    return  SkinsRect( r.left, r.top, r.right, r.bottom );
 }