-rw-r--r-- | libkcal/phoneformat.cpp | 24 |
1 files changed, 4 insertions, 20 deletions
diff --git a/libkcal/phoneformat.cpp b/libkcal/phoneformat.cpp index 1a9ccbc..7e1c9cd 100644 --- a/libkcal/phoneformat.cpp +++ b/libkcal/phoneformat.cpp @@ -47,18 +47,4 @@ using namespace KCal; -//CARDID,CATEGORY,DSRP,PLCE,MEM1,TIM1,TIM2,ADAY,ARON,ARMN,ARSD,RTYP,RFRQ,RPOS,RDYS,REND,REDT,ALSD,ALED,MDAY -// 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 - -//ARSD silentalarm = 0 -// 11 RTYP 225 no /0 dialy/ 1 weekly/ 3 month by date/ 2 month by day(pos)/ yearly -// 12 RFRQ -// 13 RPOS pos = 4. monday in month -// 14 RDYS days: 1 mon/ 2 tue .. 64 sun -// 15 REND 0 = no end/ 1 = end -// 16 REDT rec end dt -//ALSD -//ALED -//MDAY - class PhoneParser : public QObject { @@ -174,5 +160,4 @@ public: } QString alarmString = ""; - // strange 0 semms to mean: alarm enabled if ( alarm ) { Alarm *alarm; @@ -664,5 +649,4 @@ bool PhoneFormat::load( Calendar *calendar, Calendar *existingCal ,QString profi s.ConfigNum = 1; GSM_Config *cfg = &s.Config[0]; - di.coding = "utf8"; if ( ! connection.isEmpty() ) { cfg->Connection = strdup(connection.latin1()); @@ -685,8 +669,7 @@ bool PhoneFormat::load( Calendar *calendar, Calendar *existingCal ,QString profi } int error=GSM_InitConnection(&s,3); - qDebug(" init %d %d", error, ERR_NONE); + qDebug("GSM Init %d (no error is %d)", error, ERR_NONE); if ( error != ERR_NONE ) return false; - // fromString2Cal( calendar, existngCal, &s, "Event" ); GSM_Phone_Functions *Phone; GSM_CalendarEntry note; @@ -696,5 +679,6 @@ bool PhoneFormat::load( Calendar *calendar, Calendar *existingCal ,QString profi PhoneParser handler( calendar, profileName ); int ccc = 0; - while (!gshutdown && ccc++ < 3) { + qDebug("Debug: only 10 calender items are downloaded "); + while (!gshutdown && ccc++ < 10) { qDebug("readEvent %d ", ccc); @@ -712,5 +696,5 @@ bool PhoneFormat::load( Calendar *calendar, Calendar *existingCal ,QString profi if (error == ERR_EMPTY) break; start = false; - qDebug("readTodo %d ", ++ccc); + qDebug("ReadTodo %d ", ++ccc); handler.readTodo( existingCal, &ToDo, &s); |