diff options
author | Michele Calgaro <[email protected]> | 2023-11-09 10:36:57 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-09 10:36:57 +0900 |
commit | b53c83209a6b927b27600899a780db1efc985ecb (patch) | |
tree | 5669b200cf24a8e47338ab2054daf3a58264925f /kppp/modemcmds.cpp | |
parent | 82b0c5074d73953b9d00fa7b8c17115bb4bc900e (diff) | |
download | tdenetwork-b53c83209a6b927b27600899a780db1efc985ecb.tar.gz tdenetwork-b53c83209a6b927b27600899a780db1efc985ecb.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kppp/modemcmds.cpp')
-rw-r--r-- | kppp/modemcmds.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kppp/modemcmds.cpp b/kppp/modemcmds.cpp index 43900295..625ee40b 100644 --- a/kppp/modemcmds.cpp +++ b/kppp/modemcmds.cpp @@ -71,7 +71,7 @@ ModemCommands::ModemCommands(TQWidget *parent, const char *name) FORMATSLIDERLABEL(lpreinitslider); preinitslider = new TQSlider(0, 300, 1, 0, - Qt::Horizontal, dummyWidget); + TQt::Horizontal, dummyWidget); preinitslider->setFixedHeight(preinitslider->sizeHint().height()); connect(preinitslider, TQT_SIGNAL(valueChanged(int)), lpreinitslider, TQT_SLOT(setNum(int))); @@ -95,7 +95,7 @@ ModemCommands::ModemCommands(TQWidget *parent, const char *name) linitslider = new TQLabel("MMMM", dummyWidget); FORMATSLIDERLABEL(linitslider); initslider = new TQSlider(1, 300, 1, 0, - Qt::Horizontal, dummyWidget); + TQt::Horizontal, dummyWidget); initslider->setFixedHeight(initslider->sizeHint().height()); connect(initslider, TQT_SIGNAL(valueChanged(int)), linitslider, TQT_SLOT(setNum(int))); @@ -111,7 +111,7 @@ ModemCommands::ModemCommands(TQWidget *parent, const char *name) ldurationslider = new TQLabel("MMMM", dummyWidget); FORMATSLIDERLABEL(ldurationslider); durationslider = new TQSlider(1, 255, 1, 0, - Qt::Horizontal, dummyWidget); + TQt::Horizontal, dummyWidget); durationslider->setFixedHeight(durationslider->sizeHint().height()); connect(durationslider, TQT_SIGNAL(valueChanged(int)), ldurationslider, TQT_SLOT(setNum(int))); @@ -227,7 +227,7 @@ ModemCommands::ModemCommands(TQWidget *parent, const char *name) FORMATSLIDERLABEL(lslider); slider = new TQSlider(0, 255, 1, 0, - Qt::Horizontal, dummyWidget); + TQt::Horizontal, dummyWidget); slider->setFixedHeight(slider->sizeHint().height()); connect(slider, TQT_SIGNAL(valueChanged(int)), lslider, TQT_SLOT(setNum(int))); |