From: <ai...@us...> - 2010-10-26 01:51:23
|
Revision: 11274 http://plplot.svn.sourceforge.net/plplot/?rev=11274&view=rev Author: airwin Date: 2010-10-26 01:51:16 +0000 (Tue, 26 Oct 2010) Log Message: ----------- Remove corrupted character 0x85 from file where it occurs in comments and one menu string. Modified Paths: -------------- trunk/drivers/wingcc.c Modified: trunk/drivers/wingcc.c =================================================================== --- trunk/drivers/wingcc.c 2010-10-26 01:31:20 UTC (rev 11273) +++ trunk/drivers/wingcc.c 2010-10-26 01:51:16 UTC (rev 11274) @@ -102,7 +102,7 @@ HBRUSH fillbrush; /* brush used for fills */ HCURSOR cursor; /* Current windows cursor for this window */ HBITMAP bitmap; /* Bitmap of current display; used for fast redraws via blitting */ - HGDIOBJ oldobject; /* Used for tracking objects\x85 probably not really needed but\x85 */ + HGDIOBJ oldobject; /* Used for tracking objects probably not really needed but */ HMENU PopupMenu; PLINT draw_mode; @@ -578,7 +578,7 @@ dev->PopupMenu = CreatePopupMenu(); AppendMenu( dev->PopupMenu, MF_STRING, PopupPrint, "Print" ); - AppendMenu( dev->PopupMenu, MF_STRING, PopupNextPage, "Next Page\x85" ); + AppendMenu( dev->PopupMenu, MF_STRING, PopupNextPage, "Next Page" ); AppendMenu( dev->PopupMenu, MF_STRING, PopupQuit, "Quit" ); #ifdef HAVE_FREETYPE This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |