diff options
author | Michele Calgaro <[email protected]> | 2023-12-29 16:42:37 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-29 16:48:53 +0900 |
commit | c679361a50aee162491e7195f2bcfdbbf341dde5 (patch) | |
tree | c8ff90ba1810054b7e53a79649b0e33a0937e74f /src/tools/gputils/gui/gputils_ui.cpp | |
parent | a8207be921513da0ccccf41e36e056736c2b8457 (diff) | |
download | piklab-c679361a50aee162491e7195f2bcfdbbf341dde5.tar.gz piklab-c679361a50aee162491e7195f2bcfdbbf341dde5.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/tools/gputils/gui/gputils_ui.cpp')
-rw-r--r-- | src/tools/gputils/gui/gputils_ui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/gputils/gui/gputils_ui.cpp b/src/tools/gputils/gui/gputils_ui.cpp index bab898e..2a912f7 100644 --- a/src/tools/gputils/gui/gputils_ui.cpp +++ b/src/tools/gputils/gui/gputils_ui.cpp @@ -24,7 +24,7 @@ void GPUtils::ConfigWidget::initEntries() TQLabel *label = new TQLabel(i18n("Warning level:"), container()); container()->addWidget(label, row,row, 0,0); _gpasmWarning = new TQComboBox(container()); - connect(_gpasmWarning, TQT_SIGNAL(activated(int)), TQT_SIGNAL(changed())); + connect(_gpasmWarning, TQ_SIGNAL(activated(int)), TQ_SIGNAL(changed())); for (uint i=0; i<GPUtils::Config::Nb_WarningLevels; i++) _gpasmWarning->insertItem(i18n(GPUtils::Config::WARNING_LEVEL_LABELS[i])); _gpasmWarning->insertItem(i18n("as in LIST directive")); |