author | mickeyl <mickeyl> | 2004-04-04 17:12:42 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-04-04 17:12:42 (UTC) |
commit | b49dbce74737411736d63358319e709d1af810bb (patch) (unidiff) | |
tree | 90be52c8315be6274806592c69b31eba61d66314 | |
parent | 77185b587adfa158dadab204f3c78db94af3e099 (diff) | |
download | opie-b49dbce74737411736d63358319e709d1af810bb.zip opie-b49dbce74737411736d63358319e709d1af810bb.tar.gz opie-b49dbce74737411736d63358319e709d1af810bb.tar.bz2 |
catch up with new define in odebug.h
-rw-r--r-- | core/pim/osearch/applnkitem.cpp | 2 | ||||
-rw-r--r-- | core/pim/osearch/datebooksearch.cpp | 2 | ||||
-rw-r--r-- | core/pim/osearch/doclnkitem.cpp | 4 | ||||
-rw-r--r-- | core/pim/osearch/mainwindow.cpp | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/core/pim/osearch/applnkitem.cpp b/core/pim/osearch/applnkitem.cpp index ca54eef..f9ff565 100644 --- a/core/pim/osearch/applnkitem.cpp +++ b/core/pim/osearch/applnkitem.cpp | |||
@@ -44,7 +44,7 @@ QString AppLnkItem::toRichText() | |||
44 | 44 | ||
45 | void AppLnkItem::action( int act ) | 45 | void AppLnkItem::action( int act ) |
46 | { | 46 | { |
47 | if (!_app->isValid()) Opie::Core::odebug << "INVALID" << oendl; | 47 | if (!_app->isValid()) odebug << "INVALID" << oendl; |
48 | if (act == 0) _app->execute(); | 48 | if (act == 0) _app->execute(); |
49 | else if (act == 1){ | 49 | else if (act == 1){ |
50 | QCopEnvelope e("QPE/Application/advancedfm", "setDocument(QString)"); | 50 | QCopEnvelope e("QPE/Application/advancedfm", "setDocument(QString)"); |
diff --git a/core/pim/osearch/datebooksearch.cpp b/core/pim/osearch/datebooksearch.cpp index af6b194..34cf0ce 100644 --- a/core/pim/osearch/datebooksearch.cpp +++ b/core/pim/osearch/datebooksearch.cpp | |||
@@ -40,7 +40,7 @@ DatebookSearch::DatebookSearch(QListView* parent, QString name) | |||
40 | 40 | ||
41 | DatebookSearch::~DatebookSearch() | 41 | DatebookSearch::~DatebookSearch() |
42 | { | 42 | { |
43 | Opie::Core::odebug << "SAVE DATEBOOK SEARCH CONFIG" << oendl; | 43 | odebug << "SAVE DATEBOOK SEARCH CONFIG" << oendl; |
44 | Config cfg( "osearch", Config::User ); | 44 | Config cfg( "osearch", Config::User ); |
45 | cfg.setGroup( "datebook_settings" ); | 45 | cfg.setGroup( "datebook_settings" ); |
46 | cfg.writeEntry( "show_past_events", actionShowPastEvents->isOn() ); | 46 | cfg.writeEntry( "show_past_events", actionShowPastEvents->isOn() ); |
diff --git a/core/pim/osearch/doclnkitem.cpp b/core/pim/osearch/doclnkitem.cpp index d908f7c..2e09a63 100644 --- a/core/pim/osearch/doclnkitem.cpp +++ b/core/pim/osearch/doclnkitem.cpp | |||
@@ -63,8 +63,8 @@ QString DocLnkItem::toRichText() | |||
63 | 63 | ||
64 | void DocLnkItem::action( int act ) | 64 | void DocLnkItem::action( int act ) |
65 | { | 65 | { |
66 | Opie::Core::odebug << "action" << act << oendl; | 66 | odebug << "action" << act << oendl; |
67 | if (!_doc->isValid()) Opie::Core::odebug << "INVALID" << oendl; | 67 | if (!_doc->isValid()) odebug << "INVALID" << oendl; |
68 | if (act == 0) _doc->execute(); | 68 | if (act == 0) _doc->execute(); |
69 | else if (act == 1){ | 69 | else if (act == 1){ |
70 | QCopEnvelope e("QPE/Application/advancedfm", "setDocument(QString)"); | 70 | QCopEnvelope e("QPE/Application/advancedfm", "setDocument(QString)"); |
diff --git a/core/pim/osearch/mainwindow.cpp b/core/pim/osearch/mainwindow.cpp index f329e83..3edc8de 100644 --- a/core/pim/osearch/mainwindow.cpp +++ b/core/pim/osearch/mainwindow.cpp | |||
@@ -230,7 +230,7 @@ void MainWindow::setCurrent(QListViewItem *item) | |||
230 | for (uint i = 0; i < acts.count(); i++){ | 230 | for (uint i = 0; i < acts.count(); i++){ |
231 | button = buttonMap[i]; | 231 | button = buttonMap[i]; |
232 | if (!button) { | 232 | if (!button) { |
233 | Opie::Core::owarn << " no button for " << *acts[i] << oendl; | 233 | owarn << " no button for " << *acts[i] << oendl; |
234 | button = new QPushButton( buttonBox ); | 234 | button = new QPushButton( buttonBox ); |
235 | buttonMap.insert( i, button ); | 235 | buttonMap.insert( i, button ); |
236 | signalMapper->setMapping(button, i ); | 236 | signalMapper->setMapping(button, i ); |