-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 @@ -73,5 +73,5 @@ DateBook::DateBook( QWidget *parent, const char *, WFlags f ) t.start(); db = new DateBookDBHack; - Opie::Core::odebug << "loading db t=" << t.elapsed() << oendl; + odebug << "loading db t=" << t.elapsed() << oendl; loadSettings(); setCaption( tr("Calendar") ); @@ -177,5 +177,5 @@ DateBook::DateBook( QWidget *parent, const char *, WFlags f ) #endif - Opie::Core::odebug << "done t=" << t.elapsed() << oendl; + odebug << "done t=" << t.elapsed() << oendl; connect( qApp, SIGNAL( flush() ), this, SLOT( flush() ) ); @@ -903,5 +903,5 @@ static const char * beamfile = "/tmp/obex/event.vcs"; void DateBook::beamEvent( const Event &e ) { - Opie::Core::odebug << "trying to beam" << oendl; + odebug << "trying to beam" << oendl; unlink( beamfile ); // delete if exists mkdir("/tmp/obex/", 0755); 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 @@ -70,20 +70,20 @@ void DateBookWeekHeader::pickDate() void DateBookWeekHeader::nextMonth() { - Opie::Core::owarn << "nextMonth()" << oendl; + owarn << "nextMonth()" << oendl; setDate(date.addDays(28)); } void DateBookWeekHeader::prevMonth() { - Opie::Core::owarn << "prevMonth()" << oendl; + owarn << "prevMonth()" << oendl; setDate(date.addDays(-28)); } void DateBookWeekHeader::nextWeek() { - Opie::Core::owarn << "nextWeek()" << oendl; + owarn << "nextWeek()" << oendl; setDate(date.addDays(7)); } void DateBookWeekHeader::prevWeek() { - Opie::Core::owarn << "prevWeek()" << oendl; + owarn << "prevWeek()" << oendl; 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 @@ -161,5 +161,5 @@ DateBookWeekLstEvent::DateBookWeekLstEvent(const EffectiveEvent &ev, QString s,start,middle,end,day; - Opie::Core::odebug << "weeklistviewconfig=" << weeklistviewconfig << oendl; + odebug << "weeklistviewconfig=" << weeklistviewconfig << oendl; if(weeklistviewconfig==NONE) { // No times displayed. // start.sprintf("%.2d:%.2d-",ev.start().hour(),ev.start().minute()); @@ -210,5 +210,5 @@ DateBookWeekLstView::DateBookWeekLstView(QValueList<EffectiveEvent> &ev, config.setGroup("Main"); int weeklistviewconfig=config.readNumEntry("weeklistviewconfig", NORMAL); - Opie::Core::odebug << "weeklistviewconfig: " << weeklistviewconfig << oendl; + odebug << "weeklistviewconfig: " << weeklistviewconfig << oendl; bStartOnMonday=onM; 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 @@ -432,5 +432,5 @@ Event DateEntry::event() time_t start_utc, end_utc; -// Opie::Core::odebug << "tz: " << timezone->currentZone() << oendl; +// odebug << "tz: " << timezone->currentZone() << oendl; // get real timezone @@ -440,5 +440,5 @@ Event DateEntry::event() // set timezone if ( setenv( "TZ", timezone->currentZone(), true ) != 0 ) - Opie::Core::owarn << "There was a problem setting the timezone." << oendl; + owarn << "There was a problem setting the timezone." << oendl; // convert to UTC based on selected TZ (calling tzset internally) @@ -450,5 +450,5 @@ Event DateEntry::event() if ( !realTZ.isNull() ) if ( setenv( "TZ", realTZ, true ) != 0 ) - Opie::Core::owarn << "There was a problem setting the timezone." << oendl; + owarn << "There was a problem setting the timezone." << oendl; // convert UTC to local time (calling tzset internally) |