From aea627236e4de24599c3e30617cf264c3c1b7d40 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 1 Feb 2013 15:02:43 -0600 Subject: Rename a number of classes to enhance compatibility with KDE4 --- lib/kross/test/testaction.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'lib/kross/test/testaction.cpp') diff --git a/lib/kross/test/testaction.cpp b/lib/kross/test/testaction.cpp index 481de0cf..42963904 100644 --- a/lib/kross/test/testaction.cpp +++ b/lib/kross/test/testaction.cpp @@ -22,15 +22,15 @@ TestAction::TestAction(Kross::Api::ScriptContainer::Ptr scriptcontainer) : TQWidget() { - m_actioncollection = new KActionCollection(this, this); + m_actioncollection = new TDEActionCollection(this, this); - m_action1 = new KAction("Action1_Text", 0, this, TQT_SLOT(activatedAction1()), m_actioncollection, "Action1"); + m_action1 = new TDEAction("Action1_Text", 0, this, TQT_SLOT(activatedAction1()), m_actioncollection, "Action1"); m_actionlist.append(m_action1); - scriptcontainer->addKAction(m_action1); + scriptcontainer->addTDEAction(m_action1); - m_action2 = new KAction("Action2_Text", 0, this, TQT_SLOT(activatedAction2()), m_actioncollection, "Action2"); + m_action2 = new TDEAction("Action2_Text", 0, this, TQT_SLOT(activatedAction2()), m_actioncollection, "Action2"); m_actionlist.append(m_action2); - scriptcontainer->addKAction(m_action2); + scriptcontainer->addTDEAction(m_action2); } TestAction::~TestAction() -- cgit v1.2.1