diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-11 10:35:25 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-13 20:23:16 +0900 |
commit | e234565531cd8c11949cc6aecf16179e75312458 (patch) | |
tree | 90b0cb6c9f6c2a04712bbfb73b531275d4f63976 /konq-plugins/validators/plugin_validators.cpp | |
parent | be3456c5d953fb877340a51b2ef699be6b3c7c02 (diff) | |
download | tdeaddons-e234565531cd8c11949cc6aecf16179e75312458.tar.gz tdeaddons-e234565531cd8c11949cc6aecf16179e75312458.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 7e9d8ea45280ad6657796da9536ccf6218111f22)
Diffstat (limited to 'konq-plugins/validators/plugin_validators.cpp')
-rw-r--r-- | konq-plugins/validators/plugin_validators.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/konq-plugins/validators/plugin_validators.cpp b/konq-plugins/validators/plugin_validators.cpp index 2ba435a..04a46b9 100644 --- a/konq-plugins/validators/plugin_validators.cpp +++ b/konq-plugins/validators/plugin_validators.cpp @@ -56,17 +56,17 @@ PluginValidators::PluginValidators( TQObject* parent, const char* name, m_menu->insert( new TDEAction( i18n( "Validate &HTML" ), "htmlvalidator", 0, - this, TQT_SLOT(slotValidateHTML()), + this, TQ_SLOT(slotValidateHTML()), actionCollection(), "validateHTML") ); m_menu->insert( new TDEAction( i18n( "Validate &CSS" ), "cssvalidator", 0, - this, TQT_SLOT(slotValidateCSS()), + this, TQ_SLOT(slotValidateCSS()), actionCollection(), "validateCSS") ); m_menu->insert( new TDEAction( i18n( "Validate &Links" ), 0, - this, TQT_SLOT(slotValidateLinks()), + this, TQ_SLOT(slotValidateLinks()), actionCollection(), "validateLinks") ); m_menu->setEnabled( false ); @@ -75,15 +75,15 @@ PluginValidators::PluginValidators( TQObject* parent, const char* name, { m_menu->insert( new TDEAction( i18n( "C&onfigure Validator..." ), "configure", 0, - this, TQT_SLOT(slotConfigure()), + this, TQ_SLOT(slotConfigure()), actionCollection(), "configure") ); m_part = static_cast<TDEHTMLPart *>( parent ); m_configDialog = new ValidatorsDialog( m_part->widget() ); setURLs(); - connect( m_part, TQT_SIGNAL(started(TDEIO::Job*)), this, - TQT_SLOT(slotStarted(TDEIO::Job*)) ); + connect( m_part, TQ_SIGNAL(started(TDEIO::Job*)), this, + TQ_SLOT(slotStarted(TDEIO::Job*)) ); } } |