summaryrefslogtreecommitdiff
path: root/core/pim/addressbook/ablabel.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/ablabel.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/ablabel.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/addressbook/ablabel.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/core/pim/addressbook/ablabel.cpp b/core/pim/addressbook/ablabel.cpp
index b81a3b9..6b8e4dd 100644
--- a/core/pim/addressbook/ablabel.cpp
+++ b/core/pim/addressbook/ablabel.cpp
@@ -95,15 +95,15 @@ void AbLabel::keyPressEvent( QKeyEvent *e )
if ( !m_empty ){
switch( e->key() ) {
case Qt::Key_Left:
- owarn << "Left.." << oendl;
+ odebug << "Left.." << oendl;
case Qt::Key_Right:
- owarn << "Right.." << oendl;
+ odebug << "Right.." << oendl;
case Qt::Key_F33:
- owarn << "OK.." << oendl;
+ odebug << "OK.." << oendl;
emit signalOkPressed();
break;
case Qt::Key_Up:
- owarn << "Up.." << oendl;
+ odebug << "Up.." << oendl;
if ( ( visibleHeight() < contentsHeight() ) &&
( verticalScrollBar()->value() > verticalScrollBar()->minValue() ) )
scrollBy( 0, -(visibleHeight()-20) );
@@ -117,9 +117,9 @@ void AbLabel::keyPressEvent( QKeyEvent *e )
break;
case Qt::Key_Down:
- owarn << "Down.." << oendl;
-// owarn << "Visible: " << visibleHeight() << ", content: " << contentHeight() << oendl;
-// owarn << "Value: " << verticalScrollBar()->value()
+ odebug << "Down.." << oendl;
+// odebug << "Visible: " << visibleHeight() << ", content: " << contentHeight() << oendl;
+// odebug << "Value: " << verticalScrollBar()->value()
// << ", barMaxValue: " << verticalScrollBar()->maxValue() << oendl;
if ( ( visibleHeight() < contentsHeight() ) &&
( verticalScrollBar()->value() < verticalScrollBar()->maxValue() ) )