summaryrefslogtreecommitdiffstats
path: root/quanta/utility/tagactionmanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'quanta/utility/tagactionmanager.cpp')
-rw-r--r--quanta/utility/tagactionmanager.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/quanta/utility/tagactionmanager.cpp b/quanta/utility/tagactionmanager.cpp
index 88eb0d08..3733aaaf 100644
--- a/quanta/utility/tagactionmanager.cpp
+++ b/quanta/utility/tagactionmanager.cpp
@@ -54,18 +54,18 @@ TagActionManager* TagActionManager::self()
return s_mSelf;
}
-void TagActionManager::initActions(TQWidget* tqparent)
+void TagActionManager::initActions(TQWidget* parent)
{
- Q_ASSERT(tqparent);
+ Q_ASSERT(parent);
- m_actionCollection = new KActionCollection(tqparent);
+ m_actionCollection = new KActionCollection(parent);
TagActionSet* general(new TagActionSet());
- general->initActions(tqparent);
+ general->initActions(parent);
m_tagActionSets.append(general);
TableTagActionSet* table(new TableTagActionSet());
- table->initActions(tqparent);
+ table->initActions(parent);
m_tagActionSets.append(table);
}