Patches item #1810707, was opened at 2007-10-10 12:17
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=462818&aid=1810707&group_id=51305

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: jerk (fantaz)
Assigned to: Nobody/Anonymous (nobody)
Summary: [wxPlotCtrl]Compile prblms with multiline strings in unicode

Initial Comment:
hi,
in unicode build the compiler generates error if string is
written like this:
wxString str = wxT("some text"
                   "and some more");
The correct syntax should be 
wxString str = wxT("some text")
               wxT("and some more");
------------------------------------
same goes for '_' prefix:
wxString str = _("Some text")          
               _("and some more"); 
The correct syntax should be 
wxString str = _T("some text")
               _T("and some more");
The files affected are plotprnt.cpp, plotdata.cpp and plotctrl.cpp
The patches are generated against CVS version of October 10th 2007.
best regards,
fantaz

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=462818&aid=1810707&group_id=51305

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
wxCode-users mailing list
wxCode-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wxcode-users

Reply via email to