diff options
Diffstat (limited to 'quanta/project/eventeditordlg.cpp')
-rw-r--r-- | quanta/project/eventeditordlg.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/quanta/project/eventeditordlg.cpp b/quanta/project/eventeditordlg.cpp index ddd22837..d98c5ce3 100644 --- a/quanta/project/eventeditordlg.cpp +++ b/quanta/project/eventeditordlg.cpp @@ -35,7 +35,7 @@ extern TQString taskLeaderStr; extern TQString teamLeaderStr; extern TQString subprojectLeaderStr; -EventEditorDlg::EventEditorDlg(KActionCollection *actionCollection, TQWidget* parent, const char* name, WFlags fl) +EventEditorDlg::EventEditorDlg(TDEActionCollection *actionCollection, TQWidget* parent, const char* name, WFlags fl) : EventEditorDlgS(parent,name,fl) { m_actionCollection = actionCollection; @@ -388,7 +388,7 @@ void EventEditorDlg::slotActionChanged(const TQString &name) TQStringList items; for (uint i = 0; i < m_actionCollection->count(); i++) { - KAction *a = m_actionCollection->action(i); + TDEAction *a = m_actionCollection->action(i); action = dynamic_cast<TagAction*>(a); if (!action || action->type() != "script") { |