diff options
Diffstat (limited to 'kpresenter/autoformEdit')
-rw-r--r-- | kpresenter/autoformEdit/ATFInterpreter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kpresenter/autoformEdit/ATFInterpreter.cpp b/kpresenter/autoformEdit/ATFInterpreter.cpp index ff2b1037..5f010518 100644 --- a/kpresenter/autoformEdit/ATFInterpreter.cpp +++ b/kpresenter/autoformEdit/ATFInterpreter.cpp @@ -304,7 +304,7 @@ void ATFInterpreter::interpret() } break; case VAR_VARIA: { - if ((*it).tqfind('0') != -1) v = false; + if ((*it).find('0') != -1) v = false; else v = true; attrib.isVariable = (*it); } break; |