summaryrefslogtreecommitdiff
path: root/core/pim/addressbook/ablabel.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/ablabel.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/ablabel.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/addressbook/ablabel.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/core/pim/addressbook/ablabel.cpp b/core/pim/addressbook/ablabel.cpp
index 70a66a0..8216d6f 100644
--- a/core/pim/addressbook/ablabel.cpp
+++ b/core/pim/addressbook/ablabel.cpp
@@ -20,7 +20,7 @@
#include "ablabel.h"
-
+#include <opie2/odebug.h>
AbLabel::AbLabel( QWidget *parent, const char *name ):
QTextView( parent, name ),
@@ -95,15 +95,15 @@ void AbLabel::keyPressEvent( QKeyEvent *e )
if ( !m_empty ){
switch( e->key() ) {
case Qt::Key_Left:
- qWarning( "Left..");
+ Opie::Core::owarn << "Left.." << oendl;
case Qt::Key_Right:
- qWarning( "Right..");
+ Opie::Core::owarn << "Right.." << oendl;
case Qt::Key_F33:
- qWarning( "OK..");
+ Opie::Core::owarn << "OK.." << oendl;
emit signalOkPressed();
break;
case Qt::Key_Up:
- qWarning( "UP..");
+ Opie::Core::owarn << "Up.." << oendl;
if ( ( visibleHeight() < contentsHeight() ) &&
( verticalScrollBar()->value() > verticalScrollBar()->minValue() ) )
scrollBy( 0, -(visibleHeight()-20) );
@@ -117,10 +117,10 @@ void AbLabel::keyPressEvent( QKeyEvent *e )
break;
case Qt::Key_Down:
- qWarning( "DOWN..");
-// qWarning( "visible: %d, content: %d",visibleHeight(),contentsHeight());
-// qWarning( "value: %d; barMaxValue: %d", verticalScrollBar()->value()
-// , verticalScrollBar()->maxValue() );
+ Opie::Core::owarn << "Down.." << oendl;
+// Opie::Core::owarn << "Visible: " << visibleHeight() << ", content: " << contentHeight() << oendl;
+// Opie::Core::owarn << "Value: " << verticalScrollBar()->value()
+// << ", barMaxValue: " << verticalScrollBar()->maxValue() << oendl;
if ( ( visibleHeight() < contentsHeight() ) &&
( verticalScrollBar()->value() < verticalScrollBar()->maxValue() ) )
scrollBy( 0, visibleHeight()-20 );