diff options
Diffstat (limited to 'kplato/kptview.cpp')
-rw-r--r-- | kplato/kptview.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kplato/kptview.cpp b/kplato/kptview.cpp index 4b74eab26..e0e8d895a 100644 --- a/kplato/kptview.cpp +++ b/kplato/kptview.cpp @@ -194,7 +194,7 @@ View::View(Part* part, TQWidget* parent, const char* /*name*/) // actionViewGanttNotScheduled = new TDEToggleAction(i18n("Not Scheduled"), 0, 0, this, TQ_SLOT(slotViewGanttNotScheduled()), actionCollection(), "view_gantt_showNotScheduled"); - actionViewTaskAppointments = new TDEToggleAction(i18n("Show Allocations"), 0, 0, this, TQ_SLOT(slotViewTaskAppointments()), actionCollection(), "view_task_appointments"); + actionViewTastdeAppointments = new TDEToggleAction(i18n("Show Allocations"), 0, 0, this, TQ_SLOT(slotViewTastdeAppointments()), actionCollection(), "view_task_appointments"); actionViewPert = new TDEAction(i18n("Network"), "pert_chart", 0, this, TQ_SLOT(slotViewPert()), actionCollection(), "view_pert"); @@ -456,9 +456,9 @@ void View::slotViewGanttNoInformation() { slotUpdate(false); } -void View::slotViewTaskAppointments() { +void View::slotViewTastdeAppointments() { //kdDebug()<<k_funcinfo<<endl; - m_ganttview->setShowAppointments(actionViewTaskAppointments->isChecked()); + m_ganttview->setShowAppointments(actionViewTastdeAppointments->isChecked()); m_updateGanttview = true; if (m_tab->visibleWidget() == m_ganttview) slotUpdate(false); |