summaryrefslogtreecommitdiff
path: root/core/pim/addressbook/configdlg.cpp
authordrw <drw>2004-04-02 20:16:47 (UTC)
committer drw <drw>2004-04-02 20:16:47 (UTC)
commitb4d07df7854800fd3613034f54488c6fa27d94ee (patch) (side-by-side diff)
treee467a97fe4fe9dd0d96dd22299195dd30227bef1 /core/pim/addressbook/configdlg.cpp
parent97bdc55663590ba430a4f322ad97aab9f4c02bf3 (diff)
downloadopie-b4d07df7854800fd3613034f54488c6fa27d94ee.zip
opie-b4d07df7854800fd3613034f54488c6fa27d94ee.tar.gz
opie-b4d07df7854800fd3613034f54488c6fa27d94ee.tar.bz2
Use ODebug (135 down...), and remove libopiedb2 from dependencies
Diffstat (limited to 'core/pim/addressbook/configdlg.cpp') (more/less context) (show whitespace changes)
-rw-r--r--core/pim/addressbook/configdlg.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/core/pim/addressbook/configdlg.cpp b/core/pim/addressbook/configdlg.cpp
index 6c98b5d..094dbda 100644
--- a/core/pim/addressbook/configdlg.cpp
+++ b/core/pim/addressbook/configdlg.cpp
@@ -1,5 +1,6 @@
#include "configdlg.h"
+#include <opie2/odebug.h>
#include <opie2/opimcontact.h>
#include "opie2/opimcontactfields.h"
@@ -42,7 +43,7 @@ ConfigDlg::ConfigDlg( QWidget *parent, const char *name):
void ConfigDlg::slotItemUp()
{
- qWarning( "void ConfigDlg::slotItemUp()" );
+ Opie::Core::owarn << "void ConfigDlg::slotItemUp()" << oendl;
int i = fieldListBox->currentItem();
if ( i > 0 ) {
@@ -56,7 +57,7 @@ void ConfigDlg::slotItemUp()
void ConfigDlg::slotItemDown()
{
- qWarning( "void ConfigDlg::slotItemDown()" );
+ Opie::Core::owarn << "void ConfigDlg::slotItemDown()" << oendl;
int i = fieldListBox->currentItem();
if ( i < (int)fieldListBox->count() - 1 ) {
@@ -69,19 +70,19 @@ void ConfigDlg::slotItemDown()
void ConfigDlg::slotItemAdd()
{
- qWarning( "void ConfigDlg::slotItemAdd()" );
+ Opie::Core::owarn << "void ConfigDlg::slotItemAdd()" << oendl;
int i = allFieldListBox->currentItem();
if ( i > 0 ) {
QString item = allFieldListBox->currentText();
- qWarning("ADding %s", item.latin1());
+ Opie::Core::owarn << "Adding " << item << oendl;
fieldListBox->insertItem( item );
}
}
void ConfigDlg::slotItemRemove()
{
- qWarning( "void ConfigDlg::slotItemRemove()" );
+ Opie::Core::owarn << "void ConfigDlg::slotItemRemove()" << oendl;
int i = fieldListBox->currentItem();
if ( i > 0 ) {