diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-04 22:04:06 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-05 11:35:16 +0900 |
commit | 6ea6638ae6c5e5a047c011208495de42f586e22d (patch) | |
tree | ffb31eae07d760464eb5ef9d8537464dc7c0e5ea /src/progs | |
parent | 5eea93e27f1298522ea63894c80d9a08c794dd57 (diff) | |
download | piklab-6ea6638ae6c5e5a047c011208495de42f586e22d.tar.gz piklab-6ea6638ae6c5e5a047c011208495de42f586e22d.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 57545ab9c658d42570757aa95ddb5a0c23362804)
Diffstat (limited to 'src/progs')
-rw-r--r-- | src/progs/direct/gui/direct_config_widget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/progs/direct/gui/direct_config_widget.cpp b/src/progs/direct/gui/direct_config_widget.cpp index b5f651c..fe46145 100644 --- a/src/progs/direct/gui/direct_config_widget.cpp +++ b/src/progs/direct/gui/direct_config_widget.cpp @@ -31,7 +31,7 @@ Direct::HConfigWidget::HConfigWidget(::Programmer::Base &base, TQWidget *parent, : ::Hardware::HConfigWidget(base, parent, edit) { // pins assignment - TQGroupBox *groupb = new TQGroupBox(1,Qt::Horizontal, i18n("Pin assignment"), this); + TQGroupBox *groupb = new TQGroupBox(1,TQt::Horizontal, i18n("Pin assignment"), this); _mainVBox->addWidget(groupb); TQWidget *w = new TQWidget(groupb); TQGridLayout *grid = new TQGridLayout(w, 1, 1, 0, 10); @@ -68,7 +68,7 @@ Direct::HConfigWidget::HConfigWidget(::Programmer::Base &base, TQWidget *parent, TQLabel *label = new TQLabel(i18n("Clock delay"), this); TQToolTip::add(label, i18n(DELAY_LABEL)); hbox->addWidget(label); - _delay = new KIntNumInput(0,Qt::Horizontal, this); + _delay = new KIntNumInput(0,TQt::Horizontal, this); _delay->setRange(0, 50, 5); _delay->setEnabled(edit); TQToolTip::add(_delay, i18n(DELAY_LABEL)); |