diff options
author | Michele Calgaro <[email protected]> | 2024-01-04 10:30:32 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-13 20:22:52 +0900 |
commit | e1b37ac1936f81994a2c1aa2778298fbc757531f (patch) | |
tree | 2e2df5ea5786d581b10e51e0cbde9f4921697b2f /kplato/kptwbsdefinitionpanel.cpp | |
parent | d08f80f854355e446d1c6be0eb50166646f7f291 (diff) | |
download | koffice-e1b37ac1936f81994a2c1aa2778298fbc757531f.tar.gz koffice-e1b37ac1936f81994a2c1aa2778298fbc757531f.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit c0332621bc998c9786f4841e86a62b7711fe4abf)
Diffstat (limited to 'kplato/kptwbsdefinitionpanel.cpp')
-rw-r--r-- | kplato/kptwbsdefinitionpanel.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kplato/kptwbsdefinitionpanel.cpp b/kplato/kptwbsdefinitionpanel.cpp index 3843a98c..7bd859a0 100644 --- a/kplato/kptwbsdefinitionpanel.cpp +++ b/kplato/kptwbsdefinitionpanel.cpp @@ -67,14 +67,14 @@ WBSDefinitionPanel::WBSDefinitionPanel(WBSDefinition &def, TQWidget *p, const ch levelsTable->setColumnStretchable(0, true); slotLevelChanged(level->value()); - connect(defaultCode, TQT_SIGNAL(activated(int)), TQT_SLOT(slotChanged())); - connect(defaultSeparator, TQT_SIGNAL(textChanged(const TQString&)), TQT_SLOT(slotChanged())); - connect(levelsGroup, TQT_SIGNAL(toggled(bool)), TQT_SLOT(slotLevelsGroupToggled(bool))); - connect(levelsTable, TQT_SIGNAL(valueChanged(int, int)), TQT_SLOT(slotChanged())); - connect(levelsTable, TQT_SIGNAL(selectionChanged()), TQT_SLOT(slotSelectionChanged())); - connect(level, TQT_SIGNAL(valueChanged(int)), TQT_SLOT(slotLevelChanged(int))); - connect(removeBtn, TQT_SIGNAL(clicked()), TQT_SLOT(slotRemoveBtnClicked())); - connect(addBtn, TQT_SIGNAL(clicked()), TQT_SLOT(slotAddBtnClicked())); + connect(defaultCode, TQ_SIGNAL(activated(int)), TQ_SLOT(slotChanged())); + connect(defaultSeparator, TQ_SIGNAL(textChanged(const TQString&)), TQ_SLOT(slotChanged())); + connect(levelsGroup, TQ_SIGNAL(toggled(bool)), TQ_SLOT(slotLevelsGroupToggled(bool))); + connect(levelsTable, TQ_SIGNAL(valueChanged(int, int)), TQ_SLOT(slotChanged())); + connect(levelsTable, TQ_SIGNAL(selectionChanged()), TQ_SLOT(slotSelectionChanged())); + connect(level, TQ_SIGNAL(valueChanged(int)), TQ_SLOT(slotLevelChanged(int))); + connect(removeBtn, TQ_SIGNAL(clicked()), TQ_SLOT(slotRemoveBtnClicked())); + connect(addBtn, TQ_SIGNAL(clicked()), TQ_SLOT(slotAddBtnClicked())); } void WBSDefinitionPanel::setStartValues(Part */*part*/) { |