author | mickeyl <mickeyl> | 2004-04-04 17:05:29 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-04-04 17:05:29 (UTC) |
commit | 77185b587adfa158dadab204f3c78db94af3e099 (patch) (unidiff) | |
tree | d0d7a2d3e756784ea259199d218b73c4770cdfd1 | |
parent | daef74a7e852855f781765fad7969b6c83e2e9c6 (diff) | |
download | opie-77185b587adfa158dadab204f3c78db94af3e099.zip opie-77185b587adfa158dadab204f3c78db94af3e099.tar.gz opie-77185b587adfa158dadab204f3c78db94af3e099.tar.bz2 |
fix debugging stuff (see addressbook)
-rw-r--r-- | core/pim/datebook/datebook.cpp | 6 | ||||
-rw-r--r-- | core/pim/datebook/datebookweekheaderimpl.cpp | 8 | ||||
-rw-r--r-- | core/pim/datebook/datebookweeklst.cpp | 4 | ||||
-rw-r--r-- | core/pim/datebook/dateentryimpl.cpp | 6 |
4 files changed, 12 insertions, 12 deletions
diff --git a/core/pim/datebook/datebook.cpp b/core/pim/datebook/datebook.cpp index 3d1bc0c..0a47bb8 100644 --- a/core/pim/datebook/datebook.cpp +++ b/core/pim/datebook/datebook.cpp | |||
@@ -74,3 +74,3 @@ DateBook::DateBook( QWidget *parent, const char *, WFlags f ) | |||
74 | db = new DateBookDBHack; | 74 | db = new DateBookDBHack; |
75 | Opie::Core::odebug << "loading db t=" << t.elapsed() << oendl; | 75 | odebug << "loading db t=" << t.elapsed() << oendl; |
76 | loadSettings(); | 76 | loadSettings(); |
@@ -178,3 +178,3 @@ DateBook::DateBook( QWidget *parent, const char *, WFlags f ) | |||
178 | 178 | ||
179 | Opie::Core::odebug << "done t=" << t.elapsed() << oendl; | 179 | odebug << "done t=" << t.elapsed() << oendl; |
180 | 180 | ||
@@ -904,3 +904,3 @@ void DateBook::beamEvent( const Event &e ) | |||
904 | { | 904 | { |
905 | Opie::Core::odebug << "trying to beam" << oendl; | 905 | odebug << "trying to beam" << oendl; |
906 | unlink( beamfile ); // delete if exists | 906 | unlink( beamfile ); // delete if exists |
diff --git a/core/pim/datebook/datebookweekheaderimpl.cpp b/core/pim/datebook/datebookweekheaderimpl.cpp index 123a478..7462de7 100644 --- a/core/pim/datebook/datebookweekheaderimpl.cpp +++ b/core/pim/datebook/datebookweekheaderimpl.cpp | |||
@@ -71,3 +71,3 @@ void DateBookWeekHeader::nextMonth() | |||
71 | { | 71 | { |
72 | Opie::Core::owarn << "nextMonth()" << oendl; | 72 | owarn << "nextMonth()" << oendl; |
73 | setDate(date.addDays(28)); | 73 | setDate(date.addDays(28)); |
@@ -76,3 +76,3 @@ void DateBookWeekHeader::prevMonth() | |||
76 | { | 76 | { |
77 | Opie::Core::owarn << "prevMonth()" << oendl; | 77 | owarn << "prevMonth()" << oendl; |
78 | setDate(date.addDays(-28)); | 78 | setDate(date.addDays(-28)); |
@@ -81,3 +81,3 @@ void DateBookWeekHeader::nextWeek() | |||
81 | { | 81 | { |
82 | Opie::Core::owarn << "nextWeek()" << oendl; | 82 | owarn << "nextWeek()" << oendl; |
83 | setDate(date.addDays(7)); | 83 | setDate(date.addDays(7)); |
@@ -86,3 +86,3 @@ void DateBookWeekHeader::prevWeek() | |||
86 | { | 86 | { |
87 | Opie::Core::owarn << "prevWeek()" << oendl; | 87 | owarn << "prevWeek()" << oendl; |
88 | setDate(date.addDays(-7)); | 88 | setDate(date.addDays(-7)); |
diff --git a/core/pim/datebook/datebookweeklst.cpp b/core/pim/datebook/datebookweeklst.cpp index de74d46..fe2ab51 100644 --- a/core/pim/datebook/datebookweeklst.cpp +++ b/core/pim/datebook/datebookweeklst.cpp | |||
@@ -162,3 +162,3 @@ DateBookWeekLstEvent::DateBookWeekLstEvent(const EffectiveEvent &ev, | |||
162 | 162 | ||
163 | Opie::Core::odebug << "weeklistviewconfig=" << weeklistviewconfig << oendl; | 163 | odebug << "weeklistviewconfig=" << weeklistviewconfig << oendl; |
164 | if(weeklistviewconfig==NONE) {// No times displayed. | 164 | if(weeklistviewconfig==NONE) {// No times displayed. |
@@ -211,3 +211,3 @@ DateBookWeekLstView::DateBookWeekLstView(QValueList<EffectiveEvent> &ev, | |||
211 | int weeklistviewconfig=config.readNumEntry("weeklistviewconfig", NORMAL); | 211 | int weeklistviewconfig=config.readNumEntry("weeklistviewconfig", NORMAL); |
212 | Opie::Core::odebug << "weeklistviewconfig: " << weeklistviewconfig << oendl; | 212 | odebug << "weeklistviewconfig: " << weeklistviewconfig << oendl; |
213 | 213 | ||
diff --git a/core/pim/datebook/dateentryimpl.cpp b/core/pim/datebook/dateentryimpl.cpp index 42bdbe2..297da94 100644 --- a/core/pim/datebook/dateentryimpl.cpp +++ b/core/pim/datebook/dateentryimpl.cpp | |||
@@ -433,3 +433,3 @@ Event DateEntry::event() | |||
433 | 433 | ||
434 | //Opie::Core::odebug << "tz: " << timezone->currentZone() << oendl; | 434 | //odebug << "tz: " << timezone->currentZone() << oendl; |
435 | 435 | ||
@@ -441,3 +441,3 @@ Event DateEntry::event() | |||
441 | if ( setenv( "TZ", timezone->currentZone(), true ) != 0 ) | 441 | if ( setenv( "TZ", timezone->currentZone(), true ) != 0 ) |
442 | Opie::Core::owarn << "There was a problem setting the timezone." << oendl; | 442 | owarn << "There was a problem setting the timezone." << oendl; |
443 | 443 | ||
@@ -451,3 +451,3 @@ Event DateEntry::event() | |||
451 | if ( setenv( "TZ", realTZ, true ) != 0 ) | 451 | if ( setenv( "TZ", realTZ, true ) != 0 ) |
452 | Opie::Core::owarn << "There was a problem setting the timezone." << oendl; | 452 | owarn << "There was a problem setting the timezone." << oendl; |
453 | 453 | ||