mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-11 22:03:01 -06:00
U++: fixed sources to support c++0x (rm #269)
git-svn-id: svn://ultimatepp.org/upp/trunk@4818 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
a2cdb45a7b
commit
4a31c85643
5 changed files with 6 additions and 6 deletions
|
|
@ -2772,7 +2772,7 @@ static String sCsvFormat(const Value& v)
|
|||
|
||||
String ArrayCtrl::AsCsv(bool sel, int sep, bool hdr)
|
||||
{
|
||||
char h[2] = { sep, 0 };
|
||||
char h[2] = { (char)sep, 0 };
|
||||
return AsText(sCsvFormat, sel, h, "\r\n", hdr ? h : NULL, "\r\n");
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue