diff options
Diffstat (limited to 'kradio3/src/radiostation-config.cpp')
-rw-r--r-- | kradio3/src/radiostation-config.cpp | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/kradio3/src/radiostation-config.cpp b/kradio3/src/radiostation-config.cpp index f60230c..9f191c8 100644 --- a/kradio3/src/radiostation-config.cpp +++ b/kradio3/src/radiostation-config.cpp @@ -15,9 +15,9 @@ * * ***************************************************************************/ -#include <qlabel.h> -#include <qspinbox.h> -#include <qlayout.h> +#include <tqlabel.h> +#include <tqspinbox.h> +#include <tqlayout.h> #include <klocale.h> #include <math.h> @@ -26,8 +26,8 @@ #include "include/frequencyradiostation.h" -RadioStationConfig::RadioStationConfig(QWidget *parent) - : QWidget (parent) +RadioStationConfig::RadioStationConfig(TQWidget *tqparent) + : TQWidget (tqparent) { } @@ -39,10 +39,10 @@ RadioStationConfig::~RadioStationConfig() /////////////////////////////////////////////////////////////////////// -UndefinedRadioStationConfig::UndefinedRadioStationConfig (QWidget *parent) - : RadioStationConfig(parent) +UndefinedRadioStationConfig::UndefinedRadioStationConfig (TQWidget *tqparent) + : RadioStationConfig(tqparent) { - new QLabel (i18n("I don't know how to edit this station"), this); + new TQLabel (i18n("I don't know how to edit this station"), this); } UndefinedRadioStationConfig::~UndefinedRadioStationConfig() @@ -60,17 +60,17 @@ void UndefinedRadioStationConfig::storeStationData (RadioStation &/*rs*/) /////////////////////////////////////////////////////////////////////// -FrequencyRadioStationConfig::FrequencyRadioStationConfig (QWidget *parent) - : RadioStationConfig(parent) +FrequencyRadioStationConfig::FrequencyRadioStationConfig (TQWidget *tqparent) + : RadioStationConfig(tqparent) { - QHBoxLayout *hl = new QHBoxLayout(this); - QVBoxLayout *vl = new QVBoxLayout(hl); - vl->addWidget (new QLabel(i18n("Frequency:"), this)); - m_editFrequency = new QSpinBox(20, 150000, 10, this); + TQHBoxLayout *hl = new TQHBoxLayout(this); + TQVBoxLayout *vl = new TQVBoxLayout(hl); + vl->addWidget (new TQLabel(i18n("Frequency:"), this)); + m_editFrequency = new TQSpinBox(20, 150000, 10, this); vl->addWidget (m_editFrequency); - hl->addItem(new QSpacerItem (10, 1, QSizePolicy::Expanding, QSizePolicy::Fixed)); + hl->addItem(new TQSpacerItem (10, 1, TQSizePolicy::Expanding, TQSizePolicy::Fixed)); - connect (m_editFrequency, SIGNAL(valueChanged(int)), this, SLOT(slotValueChanged(int))); + connect (m_editFrequency, TQT_SIGNAL(valueChanged(int)), this, TQT_SLOT(slotValueChanged(int))); } FrequencyRadioStationConfig::~FrequencyRadioStationConfig() |