diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:09:56 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:09:56 -0600 |
commit | 5ca50f0ef6000d132b45fc6a50cf3062245bd070 (patch) | |
tree | 99c6b7de89d289e0a80ec21f7525dc514bc759d1 /ksayit/src/ksayitsystemtray.cpp | |
parent | 722a076e84b860a947f4c68417db82526b03b1a1 (diff) | |
download | tdeaccessibility-5ca50f0ef6000d132b45fc6a50cf3062245bd070.tar.gz tdeaccessibility-5ca50f0ef6000d132b45fc6a50cf3062245bd070.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'ksayit/src/ksayitsystemtray.cpp')
-rw-r--r-- | ksayit/src/ksayitsystemtray.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ksayit/src/ksayitsystemtray.cpp b/ksayit/src/ksayitsystemtray.cpp index ca8196c..589eb5d 100644 --- a/ksayit/src/ksayitsystemtray.cpp +++ b/ksayit/src/ksayitsystemtray.cpp @@ -51,28 +51,28 @@ void KSayItSystemTray::initActions() help_kde = KStdAction::aboutKDE(help, TQT_SLOT(aboutKDE()), actionCollection()); // User defined actions - say = new KAction(i18n("Say"), + say = new TDEAction(i18n("Say"), "player_play", 0, TQT_TQOBJECT(this), TQT_SLOT (slotSayActivated()), actionCollection(), "say_it"); - shutup = new KAction(i18n("Shut Up"), + shutup = new TDEAction(i18n("Shut Up"), "player_stop", 0, TQT_TQOBJECT(this), TQT_SLOT (slotStopActivated()), actionCollection(), "shut_up"); - pause = new KAction (i18n("Pause"), + pause = new TDEAction (i18n("Pause"), "player_pause", 0, TQT_TQOBJECT(this), TQT_SLOT (slotPauseActivated()), actionCollection(), "pause"); - next_sentence = new KAction (i18n("Next Sentence"), + next_sentence = new TDEAction (i18n("Next Sentence"), "2rightarrow", 0, TQT_TQOBJECT(this), TQT_SLOT (slotNextSentenceActivated()), @@ -80,7 +80,7 @@ void KSayItSystemTray::initActions() "next_sentence"); - prev_sentence = new KAction (i18n("Previous Sentence"), + prev_sentence = new TDEAction (i18n("Previous Sentence"), "2leftarrow", 0, TQT_TQOBJECT(this), TQT_SLOT(slotPrevSentenceActivated()), |