mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-08-25 14:22:54 -06:00
QTF fix..
git-svn-id: svn://ultimatepp.org/upp/trunk@494 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
6832764d91
commit
1d3c373bf8
1 changed files with 8 additions and 2 deletions
|
|
@ -809,6 +809,7 @@ void RichQtfParser::Parse(const char *qtf, byte _accesskey)
|
|||
Cat(c);
|
||||
if(*term == ';')
|
||||
term++;
|
||||
SetFormat();
|
||||
}
|
||||
else
|
||||
if(Key2('{', ':')) {
|
||||
|
|
@ -821,8 +822,10 @@ void RichQtfParser::Parse(const char *qtf, byte _accesskey)
|
|||
Key('}');
|
||||
}
|
||||
else
|
||||
if(Key('&'))
|
||||
if(Key('&')) {
|
||||
SetFormat();
|
||||
EndPart();
|
||||
}
|
||||
else
|
||||
if(Key2('$')) {
|
||||
Flush();
|
||||
|
|
@ -866,12 +869,15 @@ void RichQtfParser::Parse(const char *qtf, byte _accesskey)
|
|||
}
|
||||
else
|
||||
if(*term == '_') {
|
||||
SetFormat();
|
||||
text.Cat(160);
|
||||
term++;
|
||||
}
|
||||
else
|
||||
if(Key2('-', '|'))
|
||||
if(Key2('-', '|')) {
|
||||
SetFormat();
|
||||
text.Cat(9);
|
||||
}
|
||||
else
|
||||
if(*term == '\1') {
|
||||
if(istable)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue