summaryrefslogtreecommitdiffstats
path: root/koffice-i18n-pt_BR/docs
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-pt_BR/docs
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-pt_BR/docs')
-rw-r--r--koffice-i18n-pt_BR/docs/koffice/chalk/developers-plugins.docbook6
1 files changed, 3 insertions, 3 deletions
diff --git a/koffice-i18n-pt_BR/docs/koffice/chalk/developers-plugins.docbook b/koffice-i18n-pt_BR/docs/koffice/chalk/developers-plugins.docbook
index 7d6dd9d3..8e072299 100644
--- a/koffice-i18n-pt_BR/docs/koffice/chalk/developers-plugins.docbook
+++ b/koffice-i18n-pt_BR/docs/koffice/chalk/developers-plugins.docbook
@@ -395,8 +395,8 @@ FerramentaEstrela::~FerramentaEstrela()
setInstance(ShearImagefatory::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_vista = (KisView*) mae;
}
@@ -1102,7 +1102,7 @@ void KisFerramentaEstrela::buttonRelease(KisButtonReleaseEvent *evento)
"ferramenta_estrela",
atalho,
this,
- SLOT(activate()),
+ TQ_SLOT(activate()),
colleccao,
name());
TQ_CHECK_PTR(m_action);