summaryrefslogtreecommitdiff
path: root/core/pim/addressbook/configdlg.cpp
authoreilers <eilers>2004-10-12 09:07:04 (UTC)
committer eilers <eilers>2004-10-12 09:07:04 (UTC)
commitc6cd1497c5e08f68085c27c04277cdb5f720527f (patch) (side-by-side diff)
tree6aeb5079e5d5046240be7eabca2e859f269ef073 /core/pim/addressbook/configdlg.cpp
parentc1be01cafaa3b9f22586c73d14c5eaf0e7c6848d (diff)
downloadopie-c6cd1497c5e08f68085c27c04277cdb5f720527f.zip
opie-c6cd1497c5e08f68085c27c04277cdb5f720527f.tar.gz
opie-c6cd1497c5e08f68085c27c04277cdb5f720527f.tar.bz2
No functional changes.
Just replaced owarn to odebug where debug output was ment by the developer. These warnings confusing users if the have any problems..
Diffstat (limited to 'core/pim/addressbook/configdlg.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/addressbook/configdlg.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/core/pim/addressbook/configdlg.cpp b/core/pim/addressbook/configdlg.cpp
index 22f7291..61e6c7e 100644
--- a/core/pim/addressbook/configdlg.cpp
+++ b/core/pim/addressbook/configdlg.cpp
@@ -43,7 +43,7 @@ ConfigDlg::ConfigDlg( QWidget *parent, const char *name):
void ConfigDlg::slotItemUp()
{
- owarn << "void ConfigDlg::slotItemUp()" << oendl;
+ odebug << "void ConfigDlg::slotItemUp()" << oendl;
int i = fieldListBox->currentItem();
if ( i > 0 ) {
@@ -57,7 +57,7 @@ void ConfigDlg::slotItemUp()
void ConfigDlg::slotItemDown()
{
- owarn << "void ConfigDlg::slotItemDown()" << oendl;
+ odebug << "void ConfigDlg::slotItemDown()" << oendl;
int i = fieldListBox->currentItem();
if ( i < (int)fieldListBox->count() - 1 ) {
@@ -70,19 +70,19 @@ void ConfigDlg::slotItemDown()
void ConfigDlg::slotItemAdd()
{
- owarn << "void ConfigDlg::slotItemAdd()" << oendl;
+ odebug << "void ConfigDlg::slotItemAdd()" << oendl;
int i = allFieldListBox->currentItem();
if ( i > 0 ) {
QString item = allFieldListBox->currentText();
- owarn << "Adding " << item << oendl;
+ odebug << "Adding " << item << oendl;
fieldListBox->insertItem( item );
}
}
void ConfigDlg::slotItemRemove()
{
- owarn << "void ConfigDlg::slotItemRemove()" << oendl;
+ odebug << "void ConfigDlg::slotItemRemove()" << oendl;
int i = fieldListBox->currentItem();
if ( i > 0 ) {