diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2013-02-19 01:16:07 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2013-02-19 01:16:07 +0100 |
commit | 4b9db7650392c5b08e0ff243f5e4138c3f40553e (patch) | |
tree | d0fb864e9b57b238070196bdf35f6ad215d409ed /tderesources/groupwise/soap/gwjobs.cpp | |
parent | 7726de45cfff91c8704323ef8041cf30b2816809 (diff) | |
download | tdepim-4b9db7650392c5b08e0ff243f5e4138c3f40553e.tar.gz tdepim-4b9db7650392c5b08e0ff243f5e4138c3f40553e.zip |
Fix unintended rename of Checklist
Diffstat (limited to 'tderesources/groupwise/soap/gwjobs.cpp')
-rw-r--r-- | tderesources/groupwise/soap/gwjobs.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tderesources/groupwise/soap/gwjobs.cpp b/tderesources/groupwise/soap/gwjobs.cpp index 435bb2aef..8857ff8e5 100644 --- a/tderesources/groupwise/soap/gwjobs.cpp +++ b/tderesources/groupwise/soap/gwjobs.cpp @@ -335,9 +335,9 @@ void ReadCalendarJob::setCalendarFolder( std::string *calendarFolder ) mCalendarFolder = calendarFolder; } -void ReadCalendarJob::setChectdelistFolder( std::string *checklistFolder ) +void ReadCalendarJob::setChecklistFolder( std::string *checklistFolder ) { - mChectdelistFolder = checklistFolder; + mChecklistFolder = checklistFolder; } void ReadCalendarJob::setCalendar( KCal::Calendar *calendar ) @@ -402,17 +402,17 @@ void ReadCalendarJob::run() haveReadFolder = true; *mCalendarFolder = *((*it)->id); } - else if ( *(fld->folderType) == Chectdelist ) { - kdDebug() << "Reading folder " << (*(*it)->id).c_str() << ", of type Chectdelist, physically containing " << count << " items." << endl; + else if ( *(fld->folderType) == Checklist ) { + kdDebug() << "Reading folder " << (*(*it)->id).c_str() << ", of type Checklist, physically containing " << count << " items." << endl; readCalendarFolder( *(*it)->id, itemCounts ); haveReadFolder = true; - *mChectdelistFolder = *((*it)->id); + *mChecklistFolder = *((*it)->id); } /* else if ( fld->folderType == SentItems ) { kdDebug() << "Reading folder " << (*(*it)->id).c_str() << ", of type SentItems, physically containing " << count << " items." << endl; readCalendarFolder( *(*it)->id, itemCounts ); haveReadFolder = true; - *mChectdelistFolder = *((*it)->id); + *mChecklistFolder = *((*it)->id); }*/ /* else if ( fld->folderType == Mailbox ) { kdDebug() << "Reading folder " << (*(*it)->id).c_str() << ", of type Mailbox (not yet accepted items), containing " << count << " items." << endl; |