diff options
author | Michele Calgaro <[email protected]> | 2024-01-04 10:30:51 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-04 10:30:51 +0900 |
commit | 1e8d02e85650c4ad5515c94b0b59aca8e500afa1 (patch) | |
tree | 48e742b20b9e45742291a7dd4078c76a804a20ad /koffice-i18n-de | |
parent | 572398a495f20ae90f9926fe36db26c50e4154b2 (diff) | |
download | koffice-i18n-1e8d02e85650c4ad5515c94b0b59aca8e500afa1.tar.gz koffice-i18n-1e8d02e85650c4ad5515c94b0b59aca8e500afa1.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'koffice-i18n-de')
-rw-r--r-- | koffice-i18n-de/docs/koffice/chalk/developers-plugins.docbook | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/koffice-i18n-de/docs/koffice/chalk/developers-plugins.docbook b/koffice-i18n-de/docs/koffice/chalk/developers-plugins.docbook index 81000b13..7b8ec9a1 100644 --- a/koffice-i18n-de/docs/koffice/chalk/developers-plugins.docbook +++ b/koffice-i18n-de/docs/koffice/chalk/developers-plugins.docbook @@ -395,8 +395,8 @@ ToolStar::~ToolStar() setInstance(ShearImageFactory::instance()); setXMLFile(locate("data","chalkplugins/shearimage.rc"), true); - (void) new TDEAction(i18n("&Shear Image..."), 0, 0, this, SLOT(slotShearImage()), actionCollection(), "shearimage"); - (void) new TDEAction(i18n("&Shear Layer..."), 0, 0, this, SLOT(slotShearLayer()), actionCollection(), "shearlayer"); + (void) new TDEAction(i18n("&Shear Image..."), 0, 0, this, TQ_SLOT(slotShearImage()), actionCollection(), "shearimage"); + (void) new TDEAction(i18n("&Shear Layer..."), 0, 0, this, TQ_SLOT(slotShearLayer()), actionCollection(), "shearlayer"); m_view = (KisView*) parent; } @@ -1100,7 +1100,7 @@ void KisToolStar::buttonRelease(KisButtonReleaseEvent *event) "tool_star", shortcut, this, - SLOT(activate()), + TQ_SLOT(activate()), collection, name()); TQ_CHECK_PTR(m_action); |