|
From: <and...@us...> - 2006-04-12 21:48:11
|
Revision: 1257 Author: andreradke Date: 2006-04-12 14:47:59 -0700 (Wed, 12 Apr 2006) ViewCVS: http://svn.sourceforge.net/frontierkernel/?rev=1257&view=rev Log Message: ----------- Fix Visual Studio compiler error in Windows-specific part of ploticoncustom, introduced in revision 1254. ViewCVS Links: ------------- http://svn.sourceforge.net/frontierkernel/?rev=1254&view=rev Modified Paths: -------------- Frontier/trunk/Common/source/icon.c Modified: Frontier/trunk/Common/source/icon.c =================================================================== --- Frontier/trunk/Common/source/icon.c 2006-04-12 21:44:27 UTC (rev 1256) +++ Frontier/trunk/Common/source/icon.c 2006-04-12 21:47:59 UTC (rev 1257) @@ -351,9 +351,11 @@ HDC hdcmask; HBITMAP hbmmask, oldmaskbm; COLORREF oldclr, oldclr2; - bigstring bsfilepath = BIGSTRING ("\x11" "Appearance\\Icons\\"); + bigstring bsfilepath; char cfilepath [256]; + copystring (BIGSTRING ("\x11" "Appearance\\Icons\\"), bsfilepath); + pushstring (bsiconname, bsfilepath); /*add file name to folder path*/ pushstring (BIGSTRING ("\x04" ".bmp"), bsfilepath); /*add .bmp file extension*/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |