Summary: | konsolekalendar --import does not import | ||
---|---|---|---|
Product: | [Applications] konsolekalendar | Reporter: | Aleksey Nogin <kde-bugs> |
Component: | general | Assignee: | Allen Winter <winter> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version First Reported In: | unspecified | ||
Target Milestone: | --- | ||
Platform: | RedHat Enterprise Linux | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Aleksey Nogin
2005-06-09 15:04:38 UTC
Aleksey, Yes, this seems to be broken in newest konsolekalendar too. Will try to fix for KDE 3.5 (and KDE 3.4.2 if there is one) SVN commit 432332 by winterz: Restort the import feature (--import). For some reason that I cannot recall either Tuukka or myself commented out what appears to be working code. It's back now. BUGS: 107104 M +2 -4 konsolekalendaradd.cpp --- trunk/KDE/kdepim/konsolekalendar/konsolekalendaradd.cpp #432331:432332 @@ -114,9 +114,7 @@ bool KonsoleKalendarAdd::addImportedCalendar() { - // TODO: reimplement this please.. - - /*if ( !m_variables->getCalendar()->load( m_variables->getImportFile() ) ) { + if ( !m_variables->getCalendar()->load( m_variables->getImportFile() ) ) { kdDebug() << "konsolekalendaradd.cpp::importCalendar() | " << "Can't import file: " @@ -135,7 +133,7 @@ m_variables->getCalendar()->save( m_variables->getCalendarFile() ); } else { m_variables->getCalendar()->save(); - }*/ + } return true; } |