added: bbcode

files: core/bbcodeparser.h core/bbcodeparser.cpp


git-svn-id: svn://ttmath.org/publicrep/winix/trunk@615 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
2010-06-30 18:42:50 +00:00
parent 759135fd7d
commit 16bb238518
16 changed files with 850 additions and 69 deletions

View File

@@ -15,7 +15,7 @@
bool MountParser::IsWhite(int c)
{
if( c==' ' || c=='\t' || c==13 )
if( c==' ' || c=='\t' || c==13 || c==160 )
return true;
return false;