From: Christophe Mutricy Date: Sun, 25 Feb 2007 22:42:49 +0000 (+0000) Subject: Compile fix X-Git-Tag: 0.9.0-test0~8420 X-Git-Url: https://git.videolan.org/gitweb.cgi/vlc.git/?p=vlc.git;p=vlc.git;a=commitdiff_plain;h=39b7ae3614f70e5dc290072764a075da69c35646;hp=4b4d1dc6533f17f5a5f0774546e51ba096078bc3 Compile fix --- diff --git a/modules/gui/skins2/win32/win32_factory.cpp b/modules/gui/skins2/win32/win32_factory.cpp index bb03baa628..be42a67d23 100644 --- a/modules/gui/skins2/win32/win32_factory.cpp +++ b/modules/gui/skins2/win32/win32_factory.cpp @@ -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 ); }