diff options
author | Timothy Pearson <[email protected]> | 2013-02-01 15:03:34 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-02-01 15:03:34 -0600 |
commit | be995f98557b8d223fd2c7b40a4b1997e1a2a2dd (patch) | |
tree | d30b7e80fc6f7a9c1a19d4babdf27f054c74f621 /koffice-i18n-sv/docs | |
parent | 3e7320c15340438a6b2816d93a106d36d0ef2fc0 (diff) | |
download | koffice-i18n-be995f98557b8d223fd2c7b40a4b1997e1a2a2dd.tar.gz koffice-i18n-be995f98557b8d223fd2c7b40a4b1997e1a2a2dd.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'koffice-i18n-sv/docs')
-rw-r--r-- | koffice-i18n-sv/docs/koffice/chalk/developers-plugins.docbook | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/koffice-i18n-sv/docs/koffice/chalk/developers-plugins.docbook b/koffice-i18n-sv/docs/koffice/chalk/developers-plugins.docbook index 7d7acde7..5344bbf7 100644 --- a/koffice-i18n-sv/docs/koffice/chalk/developers-plugins.docbook +++ b/koffice-i18n-sv/docs/koffice/chalk/developers-plugins.docbook @@ -395,8 +395,8 @@ ToolStar::~ToolStar() setInstance(ShearImageFactory::instance()); setXMLFile(locate("data","chalkplugins/shearimage.rc"), true); - (void) new KAction(i18n("&Shear Image..."), 0, 0, this, SLOT(slotShearImage()), actionCollection(), "shearimage"); - (void) new KAction(i18n("&Shear Layer..."), 0, 0, this, SLOT(slotShearLayer()), actionCollection(), "shearlayer"); + (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"); m_view = (KisView*) parent; } @@ -1091,14 +1091,14 @@ void KisToolStar::buttonRelease(KisButtonReleaseEvent *event) > för varje inmatningsenhet och att en åtgärd med samma namn läggs till flera gånger i åtgärdssamlingen. Men allt verkar fungera, så varför bekymra sig? </para> <programlisting ->void KisToolStar::setup(KActionCollection *collection) +>void KisToolStar::setup(TDEActionCollection *collection) { - m_action = static_cast<KRadioAction *>(collection->action(name())); + m_action = static_cast<TDERadioAction *>(collection->action(name())); if (m_action == 0) { - KShortcut shortcut(Qt::Key_Plus); - shortcut.append(KShortcut(Qt::Key_F9)); - m_action = new KRadioAction(i18n("&Star"), + TDEShortcut shortcut(Qt::Key_Plus); + shortcut.append(TDEShortcut(Qt::Key_F9)); + m_action = new TDERadioAction(i18n("&Star"), "tool_star", shortcut, this, |