From 28bf3cbba4139c8a0f81dc9d1a2f6c4ed724f22c Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:20:30 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeaccessibility@1157633 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- ksayit/src/fxsetupimpl.cpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'ksayit/src/fxsetupimpl.cpp') diff --git a/ksayit/src/fxsetupimpl.cpp b/ksayit/src/fxsetupimpl.cpp index cb85080..fc0100e 100644 --- a/ksayit/src/fxsetupimpl.cpp +++ b/ksayit/src/fxsetupimpl.cpp @@ -16,8 +16,8 @@ ***************************************************************************/ // QT includes -#include -#include +#include +#include // KDE includes #include @@ -27,7 +27,7 @@ // #include "freeverbsetupimpl.h" #include "fxpluginhandler.h" -FX_SetupImpl::FX_SetupImpl(QWidget *parent, const char *name, +FX_SetupImpl::FX_SetupImpl(TQWidget *parent, const char *name, KConfig *config, FXPluginHandler *fxpluginhandler ) : FX_Setup(parent,name), m_config(config), m_fxpluginhandler(fxpluginhandler) @@ -89,18 +89,18 @@ void FX_SetupImpl::slotReload() } -void FX_SetupImpl::slotConfigureEffect(QListBoxItem *item) +void FX_SetupImpl::slotConfigureEffect(TQListBoxItem *item) { m_fxpluginhandler->showEffectGUI(item->text()); } -void FX_SetupImpl::Init(QStringList c_avail) +void FX_SetupImpl::Init(TQStringList c_avail) { m_config->setGroup("Effect Stack Configuration"); - QStringList conf_active = m_config->readListEntry("Activated"); - QStringList c_active; - QStringList::Iterator sit, it; + TQStringList conf_active = m_config->readListEntry("Activated"); + TQStringList c_active; + TQStringList::Iterator sit, it; listBox_Available->clear(); listBox_Active->clear(); @@ -135,7 +135,7 @@ void FX_SetupImpl::slotSaveWasClicked() m_config->setGroup("Effect Stack Configuration"); // Read ListBox Available FX - QStringList slist; + TQStringList slist; for(uint i=0; icount(); i++){ slist.append( listBox_Available->text( (int)i) ); } @@ -144,7 +144,7 @@ void FX_SetupImpl::slotSaveWasClicked() // Read ListBox Activated FX slist.clear(); - QString t; + TQString t; for(uint i=0; icount(); i++){ t = listBox_Active->text( (int)i ); slist.append( t ); -- cgit v1.2.3