diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-25 05:28:35 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-25 05:28:35 +0000 |
commit | f008adb5a77e094eaf6abf3fc0f36958e66896a5 (patch) | |
tree | 8e9244c4d4957c36be81e15b566b4aa5ea26c982 /kpresenter/KPrObjectIface.cpp | |
parent | 1210f27b660efb7b37ff43ec68763e85a403471f (diff) | |
download | koffice-f008adb5a77e094eaf6abf3fc0f36958e66896a5.tar.gz koffice-f008adb5a77e094eaf6abf3fc0f36958e66896a5.zip |
TQt4 port koffice
This should enable compilation under both Qt3 and Qt4; fixes for any missed components will be forthcoming
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1238284 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpresenter/KPrObjectIface.cpp')
-rw-r--r-- | kpresenter/KPrObjectIface.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/kpresenter/KPrObjectIface.cpp b/kpresenter/KPrObjectIface.cpp index 6f7913bf..25aba98c 100644 --- a/kpresenter/KPrObjectIface.cpp +++ b/kpresenter/KPrObjectIface.cpp @@ -57,7 +57,7 @@ int KPrObjectIface::shadowDirection() const return (int)obj->getShadowDirection(); } -QColor KPrObjectIface::shadowColor() const +TQColor KPrObjectIface::shadowColor() const { return obj->getShadowColor(); } @@ -112,7 +112,7 @@ void KPrObjectIface::setShadowDistance( int _distance ) obj->setShadowDistance(_distance); } -void KPrObjectIface::shadowColor( const QColor & _color ) +void KPrObjectIface::shadowColor( const TQColor & _color ) { obj->setShadowColor(_color); } @@ -136,16 +136,16 @@ void KPrObjectIface::setDisappearSoundEffect( bool b ) { obj->setDisappearSoundEffect(b); } -void KPrObjectIface::setAppearSoundEffectFileName( const QString & _a_fileName ) +void KPrObjectIface::setAppearSoundEffectFileName( const TQString & _a_fileName ) { obj->setAppearSoundEffectFileName(_a_fileName); } -void KPrObjectIface::setDisappearSoundEffectFileName( const QString &_d_fileName ) +void KPrObjectIface::setDisappearSoundEffectFileName( const TQString &_d_fileName ) { obj->setDisappearSoundEffectFileName(_d_fileName); } -void KPrObjectIface::setObjectName( const QString &_objectName ) +void KPrObjectIface::setObjectName( const TQString &_objectName ) { obj->setObjectName(_objectName); } @@ -180,22 +180,22 @@ bool KPrObjectIface::disappearSoundEffect() const return obj->getDisappearSoundEffect(); } -QString KPrObjectIface::appearSoundEffectFileName() const +TQString KPrObjectIface::appearSoundEffectFileName() const { return obj->getAppearSoundEffectFileName(); } -QString KPrObjectIface::disappearSoundEffectFileName() const +TQString KPrObjectIface::disappearSoundEffectFileName() const { return obj->getDisappearSoundEffectFileName(); } -QString KPrObjectIface::typeString() const +TQString KPrObjectIface::typeString() const { return obj->getTypeString(); } -void KPrObjectIface::setEffect(const QString & effect) +void KPrObjectIface::setEffect(const TQString & effect) { if(effect=="NONE") obj->setEffect(EF_NONE); @@ -227,7 +227,7 @@ void KPrObjectIface::setEffect(const QString & effect) kdDebug(33001)<<"Error : setEffect()\n"; } -void KPrObjectIface::setEffect3(const QString & effect) +void KPrObjectIface::setEffect3(const TQString & effect) { if(effect=="NONE") obj->setEffect3(EF3_NONE); |