summaryrefslogtreecommitdiffstats
path: root/koffice-i18n-it/docs/koffice/chalk/developers-plugins.docbook
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-04 10:30:51 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-04 10:30:51 +0900
commit1e8d02e85650c4ad5515c94b0b59aca8e500afa1 (patch)
tree48e742b20b9e45742291a7dd4078c76a804a20ad /koffice-i18n-it/docs/koffice/chalk/developers-plugins.docbook
parent572398a495f20ae90f9926fe36db26c50e4154b2 (diff)
downloadkoffice-i18n-1e8d02e85650c4ad5515c94b0b59aca8e500afa1.tar.gz
koffice-i18n-1e8d02e85650c4ad5515c94b0b59aca8e500afa1.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'koffice-i18n-it/docs/koffice/chalk/developers-plugins.docbook')
-rw-r--r--koffice-i18n-it/docs/koffice/chalk/developers-plugins.docbook6
1 files changed, 3 insertions, 3 deletions
diff --git a/koffice-i18n-it/docs/koffice/chalk/developers-plugins.docbook b/koffice-i18n-it/docs/koffice/chalk/developers-plugins.docbook
index 38d88861..ebc663e1 100644
--- a/koffice-i18n-it/docs/koffice/chalk/developers-plugins.docbook
+++ b/koffice-i18n-it/docs/koffice/chalk/developers-plugins.docbook
@@ -394,8 +394,8 @@ ToolStar::~ToolStar()
setInstance(ShearImageFactory::instance());
setXMLFile(locate("data","chalkplugins/shearimage.rc"), true);
- (void) new TDEAction(i18n("&amp;Shear Image..."), 0, 0, this, SLOT(slotShearImage()), actionCollection(), "shearimage");
- (void) new TDEAction(i18n("&amp;Shear Layer..."), 0, 0, this, SLOT(slotShearLayer()), actionCollection(), "shearlayer");
+ (void) new TDEAction(i18n("&amp;Shear Image..."), 0, 0, this, TQ_SLOT(slotShearImage()), actionCollection(), "shearimage");
+ (void) new TDEAction(i18n("&amp;Shear Layer..."), 0, 0, this, TQ_SLOT(slotShearLayer()), actionCollection(), "shearlayer");
m_view = (KisView*) parent;
}
@@ -1103,7 +1103,7 @@ void KisToolStar::buttonRelease(KisButtonReleaseEvent *event)
"tool_star",
shortcut,
this,
- SLOT(activate()),
+ TQ_SLOT(activate()),
collection,
name());
TQ_CHECK_PTR(m_action);