diff options
Diffstat (limited to 'kttsd/kttsmgr')
-rw-r--r-- | kttsd/kttsmgr/kttsmgr.cpp | 8 | ||||
-rw-r--r-- | kttsd/kttsmgr/kttsmgr.h | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/kttsd/kttsmgr/kttsmgr.cpp b/kttsd/kttsmgr/kttsmgr.cpp index f4f2935..c1ce347 100644 --- a/kttsd/kttsmgr/kttsmgr.cpp +++ b/kttsd/kttsmgr/kttsmgr.cpp @@ -135,7 +135,7 @@ int main (int argc, char *argv[]) /* KttsToolTip class */ -KttsToolTip::KttsToolTip ( TQWidget* tqparent ) : TQToolTip(tqparent) +KttsToolTip::KttsToolTip ( TQWidget* parent ) : TQToolTip(parent) { } @@ -163,10 +163,10 @@ KttsToolTip::KttsToolTip ( TQWidget* tqparent ) : TQToolTip(tqparent) /* KttsMgrTray class */ -KttsMgrTray::KttsMgrTray(TQWidget *tqparent): +KttsMgrTray::KttsMgrTray(TQWidget *parent): DCOPStub("kttsd", "KSpeech"), DCOPObject("kkttsmgr_kspeechsink"), - KSystemTray(tqparent, "kttsmgrsystemtray") + KSystemTray(parent, "kttsmgrsystemtray") { TQPixmap icon = KGlobal::iconLoader()->loadIcon("kttsd", KIcon::Small); setPixmap (icon); @@ -200,7 +200,7 @@ KttsMgrTray::KttsMgrTray(TQWidget *tqparent): "textFinished(TQCString,uint)", false); // Install an event filter so we can check when KTTSMgr becomes inconified to the systray. - tqparent->installEventFilter(this); + parent->installEventFilter(this); } } diff --git a/kttsd/kttsmgr/kttsmgr.h b/kttsd/kttsmgr/kttsmgr.h index af7765c..a2a99df 100644 --- a/kttsd/kttsmgr/kttsmgr.h +++ b/kttsd/kttsmgr/kttsmgr.h @@ -39,7 +39,7 @@ class KttsToolTip: public TQToolTip { public: - KttsToolTip ( TQWidget* tqparent ); + KttsToolTip ( TQWidget* parent ); protected: virtual void maybeTip ( const TQPoint & p ); @@ -51,7 +51,7 @@ class KttsMgrTray: public KSystemTray, public KSpeech_stub, virtual public KSpee TQ_OBJECT public: - KttsMgrTray(TQWidget *tqparent=0); + KttsMgrTray(TQWidget *parent=0); ~KttsMgrTray(); void setExitWhenFinishedSpeaking(); |