diff options
Diffstat (limited to 'kpresenter/KPrAutoFormObjectIface.cpp')
-rw-r--r-- | kpresenter/KPrAutoFormObjectIface.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kpresenter/KPrAutoFormObjectIface.cpp b/kpresenter/KPrAutoFormObjectIface.cpp index ee9500b04..111a88e45 100644 --- a/kpresenter/KPrAutoFormObjectIface.cpp +++ b/kpresenter/KPrAutoFormObjectIface.cpp @@ -33,22 +33,22 @@ KPrAutoFormObjectIface::KPrAutoFormObjectIface( KPrAutoformObject *_obj ) obj = _obj; } -QString KPrAutoFormObjectIface::fileName() const +TQString KPrAutoFormObjectIface::fileName() const { return obj->getFileName(); } -void KPrAutoFormObjectIface::setFileName( const QString &_filename ) +void KPrAutoFormObjectIface::setFileName( const TQString &_filename ) { obj->setFileName(_filename); } -void KPrAutoFormObjectIface::setLineBegin( const QString & type) +void KPrAutoFormObjectIface::setLineBegin( const TQString & type) { obj->setLineBegin(lineEndBeginFromString( type )); } -void KPrAutoFormObjectIface::setLineEnd( const QString & type) +void KPrAutoFormObjectIface::setLineEnd( const TQString & type) { obj->setLineEnd(lineEndBeginFromString( type )); } |