summaryrefslogtreecommitdiffstats
path: root/koffice-i18n-pt_BR
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-01-04 10:30:51 +0900
committerMichele Calgaro <[email protected]>2024-01-07 14:51:47 +0900
commit7913867573a2711f712e67a83b65bc597ea09fc1 (patch)
treebeac7cd46c7a92376057914f95a3438e08f86631 /koffice-i18n-pt_BR
parent6b648c74249ed27429431c2040f1f18068d2b6b9 (diff)
downloadkoffice-i18n-7913867573a2711f712e67a83b65bc597ea09fc1.tar.gz
koffice-i18n-7913867573a2711f712e67a83b65bc597ea09fc1.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 1e8d02e85650c4ad5515c94b0b59aca8e500afa1)
Diffstat (limited to 'koffice-i18n-pt_BR')
-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);