diff options
Diffstat (limited to 'korganizer/korganizerifaceimpl.cpp')
-rw-r--r-- | korganizer/korganizerifaceimpl.cpp | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/korganizer/korganizerifaceimpl.cpp b/korganizer/korganizerifaceimpl.cpp index 77db1afc7..e482e0f4a 100644 --- a/korganizer/korganizerifaceimpl.cpp +++ b/korganizer/korganizerifaceimpl.cpp @@ -91,6 +91,11 @@ bool KOrganizerIfaceImpl::editIncidence( const TQString &uid ) return mActionManager->editIncidence( uid ); } +bool KOrganizerIfaceImpl::editIncidence( const TQString &uid, const TQDate &date ) +{ + return mActionManager->editIncidence( uid, date ); +} + bool KOrganizerIfaceImpl::addIncidence( const TQString &ical ) { return mActionManager->addIncidence( ical ); @@ -103,12 +108,14 @@ bool KOrganizerIfaceImpl::canQueryClose() void KOrganizerIfaceImpl::loadProfile( const TQString& path ) { - mActionManager->loadProfile( path ); + mActionManager->loadProfile( path ); } void KOrganizerIfaceImpl::saveToProfile( const TQString& path ) const { - mActionManager->saveToProfile( path ); + mActionManager->saveToProfile( path ); } - +bool KOrganizerIfaceImpl::handleCommandLine() { + return mActionManager->handleCommandLine(); +} |