summaryrefslogtreecommitdiffstats
path: root/kpresenter/KPrSoundPlayer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kpresenter/KPrSoundPlayer.cpp')
-rw-r--r--kpresenter/KPrSoundPlayer.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kpresenter/KPrSoundPlayer.cpp b/kpresenter/KPrSoundPlayer.cpp
index f35d6d3f..5ec7610a 100644
--- a/kpresenter/KPrSoundPlayer.cpp
+++ b/kpresenter/KPrSoundPlayer.cpp
@@ -43,9 +43,9 @@ using namespace std;
class KPresenterSoundPlayerPrivate {
public:
- QString fileName;
+ TQString fileName;
- KPresenterSoundPlayerPrivate( QString fileName ) : fileName( fileName ) {};
+ KPresenterSoundPlayerPrivate( TQString fileName ) : fileName( fileName ) {};
#ifndef WITHOUT_ARTS
KArtsDispatcher m_dispatche;
@@ -55,8 +55,8 @@ public:
#endif
};
-KPrSoundPlayer::KPrSoundPlayer( const QString &fileName, QObject *parent, const char *name )
- : QObject( parent, name )
+KPrSoundPlayer::KPrSoundPlayer( const TQString &fileName, TQObject *tqparent, const char *name )
+ : TQObject( tqparent, name )
{
d = new KPresenterSoundPlayerPrivate( fileName );
@@ -76,7 +76,7 @@ KPrSoundPlayer::~KPrSoundPlayer()
delete d;
}
-void KPrSoundPlayer::play( const QString &fileName )
+void KPrSoundPlayer::play( const TQString &fileName )
{
KPrSoundPlayer sp( fileName );
sp.play();