summaryrefslogtreecommitdiffstats
path: root/ksvg/impl/SVGViewSpecImpl.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ksvg/impl/SVGViewSpecImpl.cc')
-rw-r--r--ksvg/impl/SVGViewSpecImpl.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/ksvg/impl/SVGViewSpecImpl.cc b/ksvg/impl/SVGViewSpecImpl.cc
index 07412cc5..6a225626 100644
--- a/ksvg/impl/SVGViewSpecImpl.cc
+++ b/ksvg/impl/SVGViewSpecImpl.cc
@@ -20,7 +20,7 @@
#include <kdebug.h>
-#include <qstringlist.h>
+#include <tqstringlist.h>
#include "SVGElementImpl.h"
#include "SVGViewSpecImpl.h"
@@ -75,15 +75,15 @@ DOM::DOMString SVGViewSpecImpl::viewTargetString() const
return m_viewTargetString;
}
-bool SVGViewSpecImpl::parseViewSpec(const QString &s)
+bool SVGViewSpecImpl::parseViewSpec(const TQString &s)
{
if(!s.startsWith("svgView("))
return false;
// remove 'svgView(' and ')'
- QStringList subAttrs = QStringList::split(';', s.mid(8));
+ TQStringList subAttrs = TQStringList::split(';', s.mid(8));
- for(QStringList::ConstIterator it = subAttrs.begin() ; it != subAttrs.end(); ++it)
+ for(TQStringList::ConstIterator it = subAttrs.begin() ; it != subAttrs.end(); ++it)
{
if((*it).startsWith("viewBox("))
m_viewBoxString = (*it).mid(8);