diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-29 16:42:37 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-29 16:48:53 +0900 |
| commit | c679361a50aee162491e7195f2bcfdbbf341dde5 (patch) | |
| tree | c8ff90ba1810054b7e53a79649b0e33a0937e74f /src/libgui/toplevel_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 <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/libgui/toplevel_ui.cpp')
| -rw-r--r-- | src/libgui/toplevel_ui.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libgui/toplevel_ui.cpp b/src/libgui/toplevel_ui.cpp index 41f993c..c0d24a4 100644 --- a/src/libgui/toplevel_ui.cpp +++ b/src/libgui/toplevel_ui.cpp @@ -18,8 +18,8 @@ ProgrammerStatusWidget::ProgrammerStatusWidget(TQWidget *parent) : TQObject(parent), KeyPopupButton<TQString>(parent) { - connect(widget(), TQT_SIGNAL(activated(int)), TQT_SLOT(activatedSlot(int))); - widget()->appendAction(i18n("Configure..."), "configure", this, TQT_SIGNAL(configure())); + connect(widget(), TQ_SIGNAL(activated(int)), TQ_SLOT(activatedSlot(int))); + widget()->appendAction(i18n("Configure..."), "configure", this, TQ_SIGNAL(configure())); widget()->appendSeparator(); Programmer::Lister::ConstIterator it; for (it=Programmer::lister().begin(); it!=Programmer::lister().end(); ++it) @@ -35,9 +35,9 @@ void ProgrammerStatusWidget::activatedSlot(int id) ToolStatusWidget::ToolStatusWidget(TQWidget *parent) : TQObject(parent), KeyPopupButton<TQString>(parent) { - connect(widget(), TQT_SIGNAL(activated(int)), TQT_SLOT(activatedSlot(int))); - widget()->appendAction(i18n("Configure Toolchain..."), "configure", this, TQT_SIGNAL(configureToolchain())); - widget()->appendAction(i18n("Configure Compilation..."), "configure", this, TQT_SIGNAL(configure())); + connect(widget(), TQ_SIGNAL(activated(int)), TQ_SLOT(activatedSlot(int))); + widget()->appendAction(i18n("Configure Toolchain..."), "configure", this, TQ_SIGNAL(configureToolchain())); + widget()->appendAction(i18n("Configure Compilation..."), "configure", this, TQ_SIGNAL(configure())); widget()->appendSeparator(); Tool::Lister::ConstIterator it; for (it=Tool::lister().begin(); it!=Tool::lister().end(); ++it) |
