diff options
author | Michele Calgaro <[email protected]> | 2021-05-23 20:48:35 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2021-05-29 15:16:28 +0900 |
commit | 8b78a8791bc539bcffe7159f9d9714d577cb3d7d (patch) | |
tree | 1328291f966f19a22d7b13657d3f01a588eb1083 /kplato/KPtViewIface.cc | |
parent | 95834e2bdc5e01ae1bd21ac0dfa4fa1d2417fae9 (diff) | |
download | koffice-8b78a8791bc539bcffe7159f9d9714d577cb3d7d.tar.gz koffice-8b78a8791bc539bcffe7159f9d9714d577cb3d7d.zip |
Renaming of files in preparation for code style tools.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kplato/KPtViewIface.cc')
-rw-r--r-- | kplato/KPtViewIface.cc | 88 |
1 files changed, 0 insertions, 88 deletions
diff --git a/kplato/KPtViewIface.cc b/kplato/KPtViewIface.cc deleted file mode 100644 index dafd718d..00000000 --- a/kplato/KPtViewIface.cc +++ /dev/null @@ -1,88 +0,0 @@ - -#include "KPtViewIface.h" -#include "kptview.h" - -#include <tdeapplication.h> -#include <dcopclient.h> -#include <dcopref.h> - -namespace KPlato -{ - -/************************************************ - * - * ViewIface - * - ************************************************/ - -ViewIface::ViewIface( View* t ) - : KoViewIface( t ) -{ - m_view = t; -} - -ViewIface::~ViewIface() -{ -} - -void ViewIface::slotEditResource() -{ - m_view->slotEditResource(); -} - -void ViewIface::slotEditCut() -{ - m_view->slotEditCut(); -} - -void ViewIface::slotEditCopy() -{ - m_view->slotEditCopy(); -} - -void ViewIface::slotEditPaste() -{ - m_view->slotEditPaste(); -} - -void ViewIface::slotViewGantt() -{ - m_view->slotViewGantt(); -} - -void ViewIface::slotViewPert() -{ - m_view->slotViewPert(); -} - -void ViewIface::slotViewResources() -{ - m_view->slotViewResources(); -} - -void ViewIface::slotAddTask() -{ - m_view->slotAddTask(); -} - -void ViewIface::slotAddSubTask() -{ - m_view->slotAddSubTask(); -} - -void ViewIface::slotAddMilestone() -{ - m_view->slotAddMilestone(); -} - -void ViewIface::slotProjectEdit() -{ - m_view->slotProjectEdit(); -} - -void ViewIface::slotConfigure() -{ - m_view->slotConfigure(); -} - -} //KPlato namespace |