diff options
Diffstat (limited to 'lib/kformula/creationstrategy.cc')
-rw-r--r-- | lib/kformula/creationstrategy.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/kformula/creationstrategy.cc b/lib/kformula/creationstrategy.cc index 2a1a8aa1..592c744b 100644 --- a/lib/kformula/creationstrategy.cc +++ b/lib/kformula/creationstrategy.cc @@ -17,7 +17,7 @@ * Boston, MA 02110-1301, USA. */ -#include <qdom.h> +#include <tqdom.h> #include "bracketelement.h" #include "creationstrategy.h" @@ -36,7 +36,7 @@ KFORMULA_NAMESPACE_BEGIN -BasicElement* OrdinaryCreationStrategy::createElement( QString type, const QDomElement& ) +BasicElement* OrdinaryCreationStrategy::createElement( TQString type, const TQDomElement& ) { if ( type == "TEXT" ) return new TextElement(); else if ( type == "EMPTY" ) return new EmptyElement(); @@ -59,7 +59,7 @@ BasicElement* OrdinaryCreationStrategy::createElement( QString type, const QDomE } -TextElement* OrdinaryCreationStrategy::createTextElement( const QChar& ch, bool symbol ) +TextElement* OrdinaryCreationStrategy::createTextElement( const TQChar& ch, bool symbol ) { return new TextElement( ch, symbol ); } |