summaryrefslogtreecommitdiffstats
path: root/kpresenter/KPrObjectProperties.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2012-01-13 13:15:14 -0600
committerTimothy Pearson <[email protected]>2012-01-13 13:15:14 -0600
commit735d75d6ce19269dc5faa00abc8f88ff30ce2f23 (patch)
tree4e85ad9cc0479892232125234c6b71c4f17ac611 /kpresenter/KPrObjectProperties.cpp
parentb180811d9a814c638032f77aaf02e84a3126328c (diff)
downloadkoffice-735d75d6ce19269dc5faa00abc8f88ff30ce2f23.tar.gz
koffice-735d75d6ce19269dc5faa00abc8f88ff30ce2f23.zip
Fix inadvertent TQt string conversions
This closes Bug 782
Diffstat (limited to 'kpresenter/KPrObjectProperties.cpp')
-rw-r--r--kpresenter/KPrObjectProperties.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kpresenter/KPrObjectProperties.cpp b/kpresenter/KPrObjectProperties.cpp
index c0c8d581..bbc1053e 100644
--- a/kpresenter/KPrObjectProperties.cpp
+++ b/kpresenter/KPrObjectProperties.cpp
@@ -56,7 +56,7 @@ void KPrObjectProperties::getProperties( const TQPtrList<KPrObject> &objects )
case OT_LINE:
case OT_FREEHAND:
case OT_POLYLINE:
- case OT_TQUADRICBEZIERCURVE:
+ case OT_QUADRICBEZIERCURVE:
case OT_CUBICBEZIERCURVE:
getPenProperties( it.current() );
getLineEndsProperties( it.current() );
@@ -145,7 +145,7 @@ void KPrObjectProperties::getLineEndsProperties( KPrObject *object )
}
case OT_FREEHAND:
case OT_POLYLINE:
- case OT_TQUADRICBEZIERCURVE:
+ case OT_QUADRICBEZIERCURVE:
case OT_CUBICBEZIERCURVE:
{
KPrPointObject *obj = dynamic_cast<KPrPointObject*>( object );