summaryrefslogtreecommitdiffstats
path: root/kpresenter/KPrFreehandObjectIface.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kpresenter/KPrFreehandObjectIface.cpp')
-rw-r--r--kpresenter/KPrFreehandObjectIface.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kpresenter/KPrFreehandObjectIface.cpp b/kpresenter/KPrFreehandObjectIface.cpp
index 8aab6f98..19843a1b 100644
--- a/kpresenter/KPrFreehandObjectIface.cpp
+++ b/kpresenter/KPrFreehandObjectIface.cpp
@@ -32,23 +32,23 @@ KPrFreehandObjectIface::KPrFreehandObjectIface( KPrFreehandObject *_obj )
obj = _obj;
}
-void KPrFreehandObjectIface::setLineBegin( const QString & type)
+void KPrFreehandObjectIface::setLineBegin( const TQString & type)
{
obj->setLineBegin(lineEndBeginFromString( type ));
}
-void KPrFreehandObjectIface::setLineEnd( const QString & type)
+void KPrFreehandObjectIface::setLineEnd( const TQString & type)
{
obj->setLineEnd(lineEndBeginFromString( type ));
}
-QString KPrFreehandObjectIface::lineBegin()const
+TQString KPrFreehandObjectIface::lineBegin()const
{
LineEnd type=obj->getLineBegin();
return lineEndBeginName( type );
}
-QString KPrFreehandObjectIface::lineEnd() const
+TQString KPrFreehandObjectIface::lineEnd() const
{
LineEnd type=obj->getLineEnd();
return lineEndBeginName( type );
@@ -56,12 +56,12 @@ QString KPrFreehandObjectIface::lineEnd() const
void KPrFreehandObjectIface::horizontalFlip()
{
- //todo repaint it
+ //todo tqrepaint it
obj->flip(true );
}
void KPrFreehandObjectIface::verticalFlip()
{
- //todo repaint it
+ //todo tqrepaint it
obj->flip( false );
}