From c6cd1497c5e08f68085c27c04277cdb5f720527f Mon Sep 17 00:00:00 2001 From: eilers Date: Tue, 12 Oct 2004 09:07:04 +0000 Subject: 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.. --- (limited to 'core/pim/addressbook/ablabel.cpp') 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() ) ) -- cgit v0.9.0.2