summaryrefslogtreecommitdiff
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
parent97bdc55663590ba430a4f322ad97aab9f4c02bf3 (diff)
downloadopie-b4d07df7854800fd3613034f54488c6fa27d94ee.zip
opie-b4d07df7854800fd3613034f54488c6fa27d94ee.tar.gz
opie-b4d07df7854800fd3613034f54488c6fa27d94ee.tar.bz2
Use ODebug (135 down...), and remove libopiedb2 from dependencies
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/addressbook/ablabel.cpp18
-rw-r--r--core/pim/addressbook/abtable.cpp57
-rw-r--r--core/pim/addressbook/abview.cpp61
-rw-r--r--core/pim/addressbook/addressbook.cpp67
-rw-r--r--core/pim/addressbook/configdlg.cpp11
-rw-r--r--core/pim/addressbook/contacteditor.cpp82
-rw-r--r--core/pim/addressbook/opie-addressbook.control2
-rw-r--r--core/pim/addressbook/picker.cpp28
8 files changed, 170 insertions, 156 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
@@ -21,5 +21,5 @@
#include "ablabel.h"
-
+#include <opie2/odebug.h>
AbLabel::AbLabel( QWidget *parent, const char *name ):
@@ -96,13 +96,13 @@ void AbLabel::keyPressEvent( QKeyEvent *e )
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() ) )
@@ -118,8 +118,8 @@ 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() ) )
diff --git a/core/pim/addressbook/abtable.cpp b/core/pim/addressbook/abtable.cpp
index cd77b13..cb57342 100644
--- a/core/pim/addressbook/abtable.cpp
+++ b/core/pim/addressbook/abtable.cpp
@@ -20,5 +20,5 @@
**********************************************************************/
-
+#include <opie2/odebug.h>
#include <opie2/opimrecordlist.h>
@@ -122,6 +122,5 @@ AbTable::AbTable( const QValueList<int> order, QWidget *parent, const char *name
countNested( 0 )
{
- // qWarning("C'tor start");
-
+ // Opie::Core::owarn << "C'tor start" << oendl;
setSelectionMode( NoSelection );
init();
@@ -131,5 +130,5 @@ AbTable::AbTable( const QValueList<int> order, QWidget *parent, const char *name
// contactList.clear();
- // qWarning("C'tor end");
+ // Opie::Core::owarn << "C'tor end" << oendl;
}
@@ -153,5 +152,5 @@ void AbTable::init()
void AbTable::setContacts( const Opie::OPimContactAccess::List& viewList )
{
- qWarning("AbTable::setContacts()");
+ Opie::Core::owarn << "AbTable::setContacts()" << oendl;
clear();
@@ -185,5 +184,5 @@ void AbTable::setOrderedList( const QValueList<int> ordered )
bool AbTable::selectContact( int UID )
{
- qWarning( "AbTable::selectContact( %d )", UID );
+ Opie::Core::owarn << "AbTable::selectContact( " << UID << " )" << oendl;
int rows = numRows();
Opie::OPimContact* foundContact = 0l;
@@ -191,5 +190,5 @@ bool AbTable::selectContact( int UID )
setPaintingEnabled( FALSE );
- qWarning( "search start" );
+ Opie::Core::owarn << "Search start" << oendl;
for ( int r = 0; r < rows; ++r ) {
if ( m_viewList.uidAt( r ) == UID ){
@@ -200,5 +199,5 @@ bool AbTable::selectContact( int UID )
}
}
- qWarning( "search end" );
+ Opie::Core::owarn << "Search end" << oendl;
if ( !found ){
@@ -215,5 +214,6 @@ bool AbTable::selectContact( int UID )
void AbTable::insertIntoTable( const Opie::OPimContact& cnt, int row )
{
- qWarning( "void AbTable::insertIntoTable( const Opie::OPimContact& cnt, %d )", row );
+ Opie::Core::owarn << "void AbTable::insertIntoTable( const Opie::OPimContact& cnt, "
+ << row << " )" << oendl;
QString strName;
ContactItem contactItem;
@@ -258,5 +258,5 @@ void AbTable::columnClicked( int col )
void AbTable::resort()
{
- qWarning( "void AbTable::resort() NOT POSSIBLE !!" );
+ Opie::Core::owarn << "void AbTable::resort() NOT POSSIBLE !!" << oendl;
#if 0
setPaintingEnabled( FALSE );
@@ -284,5 +284,5 @@ int AbTable::currentEntry_UID()
void AbTable::clear()
{
- qWarning( "void AbTable::clear()" );
+ Opie::Core::owarn << "void AbTable::clear()" << oendl;
// contactList.clear();
@@ -302,5 +302,5 @@ void AbTable::clear()
void AbTable::refresh()
{
- qWarning( "void AbTable::refresh() NOT IMPLEMENTED !!" );
+ Opie::Core::owarn << "void AbTable::refresh() NOT IMPLEMENTED !!" << oendl;
#if 0
@@ -335,5 +335,5 @@ void AbTable::keyPressEvent( QKeyEvent *e )
moveTo( key );
- // qWarning("Received key ..");
+ // Opie::Core::owarn << "Received key .." << oendl;
switch( e->key() ) {
case Qt::Key_Space:
@@ -343,9 +343,9 @@ void AbTable::keyPressEvent( QKeyEvent *e )
break;
// case Qt::Key_Up:
-// qWarning("a");
+// Opie::Core::owarn << "a" << oendl;
// emit signalKeyUp();
// break;
// case Qt::Key_Down:
-// qWarning("b");
+// Opie::Core::owarn << "b" << oendl;
// emit signalKeyDown();
// break;
@@ -358,5 +358,5 @@ void AbTable::keyPressEvent( QKeyEvent *e )
void AbTable::moveTo( char c )
{
- qWarning( "void AbTable::moveTo( char c ) NOT IMPLEMENTED !!" );
+ Opie::Core::owarn << "void AbTable::moveTo( char c ) NOT IMPLEMENTED !!" << oendl;
#if 0
@@ -424,5 +424,5 @@ void AbTable::resizeRows() {
void AbTable::realignTable()
{
- // qWarning( "void AbTable::realignTable()" );
+ // Opie::Core::owarn << "void AbTable::realignTable()" << oendl;
setPaintingEnabled( FALSE );
@@ -474,5 +474,5 @@ void QTable::paintEmptyArea( QPainter *p, int cx, int cy, int cw, int ch )
void AbTable::fitColumns()
{
- qWarning( "void AbTable::fitColumns()" );
+ Opie::Core::owarn << "void AbTable::fitColumns()" << oendl;
int contentsWidth = visibleWidth() / 2;
// Fix to better value
@@ -486,5 +486,5 @@ void AbTable::fitColumns()
}
- // qWarning("Width: %d", contentsWidth);
+ // Opie::Core::owarn << "Width: " << contentsWidth << oendl;
setColumnWidth( 0, contentsWidth );
@@ -498,5 +498,5 @@ void AbTable::fitColumns()
void AbTable::show()
{
- // qWarning( "void AbTable::show()" );
+ // Opie::Core::owarn << "void AbTable::show()" << oendl;
realignTable();
QTable::show();
@@ -522,9 +522,9 @@ void AbTable::setChoiceNames( const QStringList& list)
void AbTable::itemClicked(int,int col)
{
- // qWarning( "AbTable::itemClicked(int, col:%d)", col);
+ // Opie::Core::owarn << "AbTable::itemClicked(int, col: " << col << ")" << oendl;
if ( col == 2 ) {
return;
} else {
- // qWarning ("Emitting signalSwitch()");
+ // Opie::Core::owarn << "Emitting signalSwitch()" << oendl;
emit signalSwitch();
}
@@ -563,5 +563,5 @@ QStringList AbTable::choiceSelection(int /*index*/) const
void AbTable::updateVisible()
{
- // qWarning("void AbTable::updateVisible()");
+ // Opie::Core::owarn << "void AbTable::updateVisible()" << oendl;
int visible,
@@ -599,5 +599,6 @@ void AbTable::updateVisible()
void AbTable::setPaintingEnabled( bool e )
{
- // qWarning("IN void AbTable::setPaintingEnabled( %d )->Nested: %d", e, countNested );
+ // Opie::Core::owarn << "IN void AbTable::setPaintingEnabled( " << e << " )->Nested: "
+ // << countNested << oendl;
if ( e ) {
@@ -615,9 +616,11 @@ void AbTable::setPaintingEnabled( bool e )
setUpdatesEnabled( false );
}
- // qWarning("OUT void AbTable::setPaintingEnabled( %d )->Nested: %d", e, countNested );
+ // Opie::Core::owarn << "OUT void AbTable::setPaintingEnabled( " << e << " )->Nested: "
+ // << countNested << oendl;
}
void AbTable::viewportPaintEvent( QPaintEvent* e ) {
- // qWarning(" void AbTable::viewportPaintEvent( QPaintEvent* e ) -> %d", enablePainting);
+ // Opie::Core::owarn << "void AbTable::viewportPaintEvent( QPaintEvent* e ) -> "
+ // << enablePainting << oendl;
if ( enablePainting )
QTable::viewportPaintEvent( e );
@@ -629,5 +632,5 @@ void AbTable::paintCell(QPainter* p, int row, int col, const QRect& cr, bool )
p->save();
- //qWarning( "Paint row: %d", row );
+ // Opie::Core::owarn << "Paint row: " << row << oendl;
Opie::OPimContact act_contact = m_viewList[row];
diff --git a/core/pim/addressbook/abview.cpp b/core/pim/addressbook/abview.cpp
index aa242b7..52e5f59 100644
--- a/core/pim/addressbook/abview.cpp
+++ b/core/pim/addressbook/abview.cpp
@@ -18,4 +18,5 @@
#include <opie2/ocontactaccessbackend_vcard.h>
+#include <opie2/odebug.h>
#include <qpe/global.h>
@@ -52,5 +53,5 @@ AbView::AbView ( QWidget* parent, const QValueList<int>& ordered ):
m_orderedFields( ordered )
{
- qWarning("AbView::c'tor");
+ Opie::Core::owarn << "AbView::c'tor" << oendl;
// Load default database and handle syncing myself.. !
m_contactdb = new Opie::OPimContactAccess ( "addressbook", 0l, 0l, false );
@@ -100,5 +101,5 @@ AbView::~AbView()
void AbView::setView( Views view )
{
- qWarning("AbView::setView( Views view )");
+ Opie::Core::owarn << "AbView::setView( Views view )" << oendl;
m_curr_View = view;
load();
@@ -107,5 +108,5 @@ void AbView::setView( Views view )
void AbView::addEntry( const Opie::OPimContact &newContact )
{
- qWarning("abview:AddContact");
+ Opie::Core::owarn << "AbView::AddContact" << oendl;
m_contactdb->add ( newContact );
load();
@@ -114,5 +115,5 @@ void AbView::addEntry( const Opie::OPimContact &newContact )
void AbView::removeEntry( const int UID )
{
- qWarning("abview:RemoveContact");
+ Opie::Core::owarn << "AbView;:RemoveContact" << oendl;
m_contactdb->remove( UID );
load();
@@ -121,5 +122,5 @@ void AbView::removeEntry( const int UID )
void AbView::replaceEntry( const Opie::OPimContact &contact )
{
- qWarning("abview:ReplaceContact");
+ Opie::Core::owarn << "AbView::ReplaceContact" << oendl;
m_contactdb->replace( contact );
load();
@@ -145,5 +146,5 @@ Opie::OPimContact AbView::currentEntry()
bool AbView::save()
{
- // qWarning("abView:Save data");
+ // Opie::Core::owarn << "AbView::Save data" << oendl;
return m_contactdb->save();
@@ -152,5 +153,5 @@ bool AbView::save()
void AbView::load()
{
- qWarning("abView:Load data");
+ Opie::Core::owarn << "AbView::Load data" << oendl;
// Letter Search is stopped at this place
@@ -166,5 +167,5 @@ void AbView::load()
}
- qWarning ("Number of contacts: %d", m_list.count());
+ Opie::Core::owarn << "Number of contacts: " << m_list.count() << oendl;
updateView( true );
@@ -174,5 +175,5 @@ void AbView::load()
void AbView::reload()
{
- qWarning( "void AbView::reload()" );
+ Opie::Core::owarn << "AbView::::reload()" << oendl;
m_contactdb->reload();
@@ -187,5 +188,5 @@ void AbView::clear()
void AbView::setShowByCategory( const QString& cat )
{
- qWarning("AbView::setShowCategory( const QString& cat )");
+ Opie::Core::owarn << "AbView::setShowCategory( const QString& cat )" << oendl;
int intCat = 0;
@@ -199,5 +200,6 @@ void AbView::setShowByCategory( const QString& cat )
// Just do anything if we really change the category
if ( intCat != m_curr_category ){
- // qWarning ("Categories: Selected %s.. Number: %d", cat.latin1(), m_curr_category);
+ // Opie::Core::owarn << "Categories: Selected " << cat << ".. Number: "
+ // << m_curr_category << oendl;
m_curr_category = intCat;
@@ -211,8 +213,8 @@ void AbView::setShowByCategory( const QString& cat )
void AbView::setShowToView( Views view )
{
- qWarning("void AbView::setShowToView( View %d )", view);
+ Opie::Core::owarn << "void AbView::setShowToView( View " << view << " )" << oendl;
if ( m_curr_View != view ){
- qWarning ("Change the View (Category is: %d)", m_curr_category);
+ Opie::Core::owarn << "Change the View (Category is: " << m_curr_category << ")" << oendl;
m_prev_View = m_curr_View;
m_curr_View = view;
@@ -225,5 +227,5 @@ void AbView::setShowToView( Views view )
void AbView::setShowByLetter( char c, AbConfig::LPSearchMode mode )
{
- qWarning("void AbView::setShowByLetter( %c, %d )", c, mode );
+ Opie::Core::owarn << "void AbView::setShowByLetter( " << c << ", " << mode << " )" << oendl;
assert( mode < AbConfig::LASTELEMENT );
@@ -248,6 +250,6 @@ void AbView::setShowByLetter( char c, AbConfig::LPSearchMode mode )
break;
default:
- qWarning( "Unknown Searchmode for AbView::setShowByLetter ! -> %d", mode );
- qWarning( "I will ignore it.." );
+ Opie::Core::owarn << "Unknown Searchmode for AbView::setShowByLetter ! -> " << mode << oendl
+ << "I will ignore it.." << oendl;
return;
}
@@ -278,5 +280,5 @@ QString AbView::showCategory() const
void AbView::showPersonal( bool personal )
{
- qWarning ("void AbView::showPersonal( %d )", personal);
+ Opie::Core::owarn << "void AbView::showPersonal( " << personal << " )" << oendl;
if ( personal ){
@@ -334,5 +336,5 @@ void AbView::slotDoFind( const QString &str, bool caseSensitive, bool useRegExp,
bool , QString cat )
{
- // qWarning( "void AbView::slotDoFind" );
+ // Opie::Core::owarn << "void AbView::slotDoFind" << oendl;
// We reloading the data: Deselect Letterpicker
@@ -348,5 +350,5 @@ void AbView::slotDoFind( const QString &str, bool caseSensitive, bool useRegExp,
}
- // qWarning ("Find in Category %d", category);
+ // Opie::Core::owarn << "Find in Category " << category << oendl;
QRegExp r( str );
@@ -357,5 +359,5 @@ void AbView::slotDoFind( const QString &str, bool caseSensitive, bool useRegExp,
m_list = m_contactdb->matchRegexp( r );
- // qWarning( "found: %d", m_list.count() );
+ // Opie::Core::owarn << "Found: " << m_list.count() << oendl;
if ( m_list.count() == 0 ){
emit signalNotFound();
@@ -381,14 +383,14 @@ void AbView::offSearch()
void AbView::slotSwitch(){
- // qWarning("AbView::slotSwitch()");
+ // Opie::Core::owarn << "AbView::slotSwitch()" << oendl;
m_prev_View = m_curr_View;
switch ( (int) m_curr_View ){
case TableView:
- qWarning("Switching to CardView");
+ Opie::Core::owarn << "Switching to CardView" << oendl;
m_curr_View = CardView;
break;
case CardView:
- qWarning("Switching to TableView");
+ Opie::Core::owarn << "Switching to TableView" << oendl;
m_curr_View = TableView;
break;
@@ -409,5 +411,5 @@ void AbView::clearForCategory()
for ( it = allList.begin(); it != allList.end(); ++it ){
if ( !contactCompare( *it, m_curr_category ) ){
- // qWarning("Removing %d", (*it).uid());
+ //Opie::Core::owarn << "Removing " << (*it).uid() << oendl;
m_list.remove( (*it).uid() );
}
@@ -419,5 +421,6 @@ void AbView::clearForCategory()
bool AbView::contactCompare( const Opie::OPimContact &cnt, int category )
{
- // qWarning ("bool AbView::contactCompare( const Opie::OPimContact &cnt, %d )", category);
+ // Opie::Core::owarn << "bool AbView::contactCompare( const Opie::OPimContact &cnt, "
+ // << category << " )" << oendl;
bool returnMe;
@@ -425,5 +428,5 @@ bool AbView::contactCompare( const Opie::OPimContact &cnt, int category )
cats = cnt.categories();
- // qWarning ("Number of categories: %d", cats.count() );
+ // Opie::Core::owarn << "Number of categories: " << cats.count() << oendl;
returnMe = false;
@@ -434,5 +437,5 @@ bool AbView::contactCompare( const Opie::OPimContact &cnt, int category )
int i;
for ( i = 0; i < int(cats.count()); i++ ) {
- // qWarning("Comparing %d with %d",cats[i],category );
+ //Opie::Core::owarn << "Comparing " << cats[i] << " with " << category << oendl;
if ( cats[i] == category ) {
returnMe = true;
@@ -441,5 +444,5 @@ bool AbView::contactCompare( const Opie::OPimContact &cnt, int category )
}
}
- // qWarning ("Return: %d", returnMe);
+ // Opie::Core::owarn << "Return: " << returnMe << oendl;
return returnMe;
}
@@ -454,5 +457,5 @@ void AbView::updateListinViews()
void AbView::updateView( bool newdata )
{
- // qWarning("AbView::updateView()");
+ // Opie::Core::owarn << "AbView::updateView()" << oendl;
if ( m_viewStack -> visibleWidget() ){
diff --git a/core/pim/addressbook/addressbook.cpp b/core/pim/addressbook/addressbook.cpp
index 9ae66d1..94c0a13 100644
--- a/core/pim/addressbook/addressbook.cpp
+++ b/core/pim/addressbook/addressbook.cpp
@@ -23,5 +23,5 @@
#include "addressbook.h"
-
+#include <opie2/odebug.h>
#include <opie2/ofileselector.h>
#include <opie2/ofiledialog.h>
@@ -252,5 +252,5 @@ AddressbookWindow::AddressbookWindow( QWidget *parent, const char *name,
setCentralWidget(listContainer);
- // qDebug("adressbook contrsuction: t=%d", t.elapsed() );
+ // Opie::Core::odebug << "adressbook contrsuction: t=" << t.elapsed() << oendl;
connect( qApp, SIGNAL( flush() ), this, SLOT( flush() ) );
connect( qApp, SIGNAL( reload() ), this, SLOT( reload() ) );
@@ -268,8 +268,8 @@ void AddressbookWindow::slotConfig()
dlg -> setConfig( m_config );
if ( QPEApplication::execDialog( dlg ) ) {
- qWarning ("Config Dialog accepted!");
+ Opie::Core::owarn << "Config Dialog accepted!" << oendl;
m_config = dlg -> getConfig();
if ( m_curFontSize != m_config.fontSize() ){
- qWarning("Font was changed!");
+ Opie::Core::owarn << "Font was changed!" << oendl;
m_curFontSize = m_config.fontSize();
emit slotSetFont( m_curFontSize );
@@ -284,5 +284,5 @@ void AddressbookWindow::slotConfig()
void AddressbookWindow::slotSetFont( int size )
{
- qWarning("void AddressbookWindow::slotSetFont( %d )", size);
+ Opie::Core::owarn << "void AddressbookWindow::slotSetFont( " << size << " )" << oendl;
if (size > 2 || size < 0)
@@ -326,8 +326,8 @@ void AddressbookWindow::importvCard() {
void AddressbookWindow::exportvCard()
{
- qWarning(" void AddressbookWindow::exportvCard()");
+ Opie::Core::owarn << "void AddressbookWindow::exportvCard()" << oendl;
QString filename = Opie::Ui::OFileDialog::getSaveFileName( 1,"/home/"); //,"", "*", this );
if( !filename.isEmpty() && ( filename[filename.length()-1] != '/' ) ){
- qWarning(" Save to file %s, (%d)", filename.latin1(), filename.length()-1 );
+ Opie::Core::owarn << " Save to file " << filename << ", (" << filename.length()-1 << ")" << oendl;
Opie::OPimContact curCont = m_abView->currentEntry();
if ( !curCont.isEmpty() ){
@@ -351,5 +351,5 @@ void AddressbookWindow::exportvCard()
void AddressbookWindow::setDocument( const QString &filename )
{
- qWarning( "void AddressbookWindow::setDocument( %s )", filename.latin1() );
+ Opie::Core::owarn << "void AddressbookWindow::setDocument( " << filename << " )" << oendl;
if ( filename.find(".vcf") != int(filename.length()) - 4 ){
@@ -363,8 +363,8 @@ void AddressbookWindow::setDocument( const QString &filename )
2 ) ) { // Escape == button 2
case 0:
- qWarning("YES clicked");
+ Opie::Core::owarn << "YES clicked" << oendl;
break;
case 1:
- qWarning("NO clicked");
+ Opie::Core::owarn << "NO clicked" << oendl;
return;
break;
@@ -376,5 +376,5 @@ void AddressbookWindow::setDocument( const QString &filename )
Opie::OPimContactAccess* access = new Opie::OPimContactAccess ( "addressbook", QString::null , vcard_backend, true );
Opie::OPimContactAccess::List allList = access->allRecords();
- qWarning( "Found number of contacts in File: %d", allList.count() );
+ Opie::Core::owarn << "Found number of contacts in File: " << allList.count() << oendl;
if ( !allList.count() ) {
@@ -387,5 +387,5 @@ void AddressbookWindow::setDocument( const QString &filename )
Opie::OPimContactAccess::List::Iterator it;
for ( it = allList.begin(); it != allList.end(); ++it ){
- qWarning("Adding Contact from: %s", (*it).fullName().latin1() );
+ Opie::Core::owarn << "Adding Contact from: " << (*it).fullName() << oendl;
if ( doAsk ){
switch( QMessageBox::information( this, tr ( "Add Contact?" ),
@@ -396,12 +396,12 @@ void AddressbookWindow::setDocument( const QString &filename )
2 ) ) { // Escape == button 2
case 0:
- qWarning("YES clicked");
+ Opie::Core::owarn << "YES clicked" << oendl;
m_abView->addEntry( *it );
break;
case 1:
- qWarning("NO clicked");
+ Opie::Core::owarn << "NO clicked" << oendl;
break;
case 2:
- qWarning("YesAll clicked");
+ Opie::Core::owarn << "YesAll clicked" << oendl;
doAsk = false;
break;
@@ -539,7 +539,7 @@ void AddressbookWindow::writeMail()
// switch to the other one..
if ( m_config.useQtMail() ){
- qWarning ("Accessing: %s", (basepath + "/bin/qtmail").latin1());
- if ( QFile::exists( basepath + "/bin/qtmail" ) ){
- qWarning ("QCop");
+ Opie::Core::owarn << "Accessing: " << (basepath + "/bin/qtmail") << oendl;
+ if ( QFile::exists( basepath + "/bin/qtmail" ) ){
+ Opie::Core::owarn << "QCop" << oendl;
QCopEnvelope e("QPE/Application/qtmail", "writeMail(QString,QString)");
e << name << email;
@@ -549,7 +549,7 @@ void AddressbookWindow::writeMail()
}
if ( m_config.useOpieMail() ){
- qWarning ("Accessing: %s", (basepath + "/bin/opiemail").latin1());
+ Opie::Core::owarn << "Accessing: " << (basepath + "/bin/opiemail") << oendl;
if ( QFile::exists( basepath + "/bin/opiemail" ) ){
- qWarning ("QCop");
+ Opie::Core::owarn << "QCop" << oendl;
QCopEnvelope e("QPE/Application/opiemail", "writeMail(QString,QString)");
e << name << email;
@@ -593,5 +593,5 @@ void AddressbookWindow::slotBeam()
}
- qWarning("Beaming: %s", beamFilename.latin1() );
+ Opie::Core::owarn << "Beaming: " << beamFilename << oendl;
Ir *ir = new Ir( this );
@@ -640,5 +640,5 @@ void AddressbookWindow::appMessage(const QCString &msg, const QByteArray &data)
{
bool needShow = FALSE;
- qWarning("Receiving QCop-Call with message %s", QString( msg ).latin1() );
+ Opie::Core::owarn << "Receiving QCop-Call with message " << msg << oendl;
@@ -656,5 +656,5 @@ void AddressbookWindow::appMessage(const QCString &msg, const QByteArray &data)
QString fn, mn, ln;
parseName( name, &fn, &mn, &ln );
- // qDebug( " %s - %s - %s", fn.latin1(), mn.latin1(), ln.latin1() );
+ // Opie::Core::odebug << " " << fn << " - " << mn " - " << ln << oendl;
cnt.setFirstName( fn );
cnt.setMiddleName( mn );
@@ -683,5 +683,5 @@ void AddressbookWindow::appMessage(const QCString &msg, const QByteArray &data)
stream >> uid;
- qWarning( "Showing uid: %d" , uid );
+ Opie::Core::owarn << "Showing uid: " << uid << oendl;
// Deactivate Personal View..
@@ -763,5 +763,5 @@ void AddressbookWindow::editPersonal()
// but take care of the menu, too
if ( ! actionPersonal->isOn() ){
- qWarning("*** ++++");
+ Opie::Core::owarn << "*** ++++" << oendl;
actionPersonal->setOn( true );
slotPersonalView();
@@ -782,8 +782,8 @@ void AddressbookWindow::editPersonal()
void AddressbookWindow::slotPersonalView()
{
- qWarning("slotPersonalView()");
+ Opie::Core::owarn << "slotPersonalView()" << oendl;
if (!actionPersonal->isOn()) {
// we just turned it off
- qWarning("slotPersonalView()-> OFF");
+ Opie::Core::owarn << "slotPersonalView()-> OFF" << oendl;
setCaption( tr("Contacts") );
actionNew->setEnabled(TRUE);
@@ -798,5 +798,5 @@ void AddressbookWindow::slotPersonalView()
}
- qWarning("slotPersonalView()-> ON");
+ Opie::Core::owarn << "slotPersonalView()-> ON" << oendl;
// XXX need to disable some QActions.
actionNew->setEnabled(FALSE);
@@ -888,5 +888,5 @@ void AddressbookWindow::slotSave()
void AddressbookWindow::slotNotFound()
{
- qWarning("Got notfound signal!");
+ Opie::Core::owarn << "Got not found signal!" << oendl;
QMessageBox::information( this, tr( "Not Found" ),
"<qt>" + tr( "Unable to find a contact for this search pattern!" ) + "</qt>" );
@@ -896,5 +896,5 @@ void AddressbookWindow::slotNotFound()
void AddressbookWindow::slotWrapAround()
{
- qWarning("Got wrap signal!");
+ Opie::Core::owarn << "Got wrap signal!" << oendl;
// if ( doNotifyWrapAround )
// QMessageBox::information( this, tr( "End of list" ),
@@ -905,5 +905,6 @@ void AddressbookWindow::slotWrapAround()
void AddressbookWindow::slotSetCategory( int c )
{
- qWarning( "void AddressbookWindow::slotSetCategory( %d ) from %d", c, catMenu->count() );
+ Opie::Core::owarn << "void AddressbookWindow::slotSetCategory( " << c << " ) from "
+ << catMenu->count() << oendl;
QString cat, book;
@@ -940,5 +941,5 @@ void AddressbookWindow::slotSetCategory( int c )
}else if ( i == (unsigned int)catMenu->count() - 1 ){ // last menu option (seperator is counted, too) will be Unfiled
cat = "Unfiled";
- qWarning ("Unfiled selected!");
+ Opie::Core::owarn << "Unfiled selected!" << oendl;
}else{
cat = m_abView->categories()[i - 4];
@@ -963,5 +964,5 @@ void AddressbookWindow::slotSetCategory( int c )
void AddressbookWindow::slotViewSwitched( int view )
{
- qWarning( "void AddressbookWindow::slotViewSwitched( %d )", view );
+ Opie::Core::owarn << "void AddressbookWindow::slotViewSwitched( " << view << " )" << oendl;
int menu = 0;
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,4 +1,5 @@
#include "configdlg.h"
+#include <opie2/odebug.h>
#include <opie2/opimcontact.h>
#include "opie2/opimcontactfields.h"
@@ -43,5 +44,5 @@ 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();
@@ -57,5 +58,5 @@ void ConfigDlg::slotItemUp()
void ConfigDlg::slotItemDown()
{
- qWarning( "void ConfigDlg::slotItemDown()" );
+ Opie::Core::owarn << "void ConfigDlg::slotItemDown()" << oendl;
int i = fieldListBox->currentItem();
@@ -70,10 +71,10 @@ 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 );
}
@@ -82,5 +83,5 @@ void ConfigDlg::slotItemAdd()
void ConfigDlg::slotItemRemove()
{
- qWarning( "void ConfigDlg::slotItemRemove()" );
+ Opie::Core::owarn << "void ConfigDlg::slotItemRemove()" << oendl;
int i = fieldListBox->currentItem();
diff --git a/core/pim/addressbook/contacteditor.cpp b/core/pim/addressbook/contacteditor.cpp
index 534666d..e496387 100644
--- a/core/pim/addressbook/contacteditor.cpp
+++ b/core/pim/addressbook/contacteditor.cpp
@@ -22,4 +22,5 @@
#include "contacteditor.h"
+#include <opie2/odebug.h>
#include <opie2/opimcontact.h>
@@ -78,5 +79,5 @@ ContactEditor::~ContactEditor() {
void ContactEditor::init() {
- qWarning("init() START");
+ Opie::Core::owarn << "init() START" << oendl;
uint i = 0;
@@ -687,9 +688,9 @@ void ContactEditor::init() {
setPersonalView ( m_personalView );
- qWarning("init() END");
+ Opie::Core::owarn << "init() END" << oendl;
}
void ContactEditor::defaultEmailChanged(int i){
- qDebug("defaultEmailChanged");
+ Opie::Core::odebug << "defaultEmailChanged" << oendl;
// was sollte das ? (se)
@@ -698,5 +699,5 @@ void ContactEditor::defaultEmailChanged(int i){
defaultEmail = cmbDefaultEmail->text(i);
- qDebug ("Changed to: %s", defaultEmail.latin1());
+ Opie::Core::odebug << "Changed to: " << defaultEmail << oendl;
}
@@ -717,10 +718,10 @@ void ContactEditor::populateDefaultEmailCmb(){
bool found = false;
for ( int i = 0; i < cmbDefaultEmail->count(); i++){
- qDebug(" populateDefaultEmailCmb text >%s< defaultEmail >%s<",
- cmbDefaultEmail->text( i ).latin1(), defaultEmail.latin1());
+ Opie::Core::odebug << " populateDefaultEmailCmb text >" << cmbDefaultEmail->text( i )
+ << "< defaultEmail >" << defaultEmail << "<" << oendl;
if ( cmbDefaultEmail->text( i ).stripWhiteSpace() == defaultEmail.stripWhiteSpace() ){
cmbDefaultEmail->setCurrentItem( i );
- qDebug("set");
+ Opie::Core::odebug << "set" << oendl;
found = true;
}
@@ -738,5 +739,6 @@ void ContactEditor::populateDefaultEmailCmb(){
bool ContactEditor::cmbChooserChange( int index, QWidgetStack* inputStack, int widgetPos ) {
QString type = slChooserNames[index];
- qWarning("ContactEditor::cmbChooserChange -> Type: %s, WidgetPos: %d", type.latin1(), widgetPos );
+ Opie::Core::owarn << "ContactEditor::cmbChooserChange -> Type: " << type
+ << ", WidgetPos: " << widgetPos << oendl;
if ( !initializing )
@@ -745,5 +747,6 @@ bool ContactEditor::cmbChooserChange( int index, QWidgetStack* inputStack, int w
// Create and connect combobox for selecting the default email
if ( type == "Default Email"){
- qWarning("Choosing default-email (defaultEmailChooserPosition= %d) ", defaultEmailChooserPosition);
+ Opie::Core::owarn << "Choosing default-email (defaultEmailChooserPosition= "
+ << defaultEmailChooserPosition << ") " << oendl;
// More than one default-email chooser is not allowed !
@@ -778,5 +781,5 @@ bool ContactEditor::cmbChooserChange( int index, QWidgetStack* inputStack, int w
} else {
// Something else was selected: Hide combo..
- qWarning(" Hiding default-email combo" );
+ Opie::Core::owarn << " Hiding default-email combo" << oendl;
if ( defaultEmailChooserPosition == widgetPos ){
defaultEmailChooserPosition = -1;
@@ -803,5 +806,5 @@ bool ContactEditor::cmbChooserChange( int index, QWidgetStack* inputStack, int w
void ContactEditor::chooserError( int index )
{
- qWarning("ContactEditor::chooserError( %d )", index);
+ Opie::Core::owarn << "ContactEditor::chooserError( " << index << " )" << oendl;
QMessageBox::warning( this, "Chooser Error",
"Multiple selection of this\n"
@@ -839,9 +842,10 @@ void ContactEditor::chooserChange( const QString &textChanged, int index,
QString type = slChooserNames[index]; // :SX
- qDebug("ContactEditor::chooserChange( type=>%s<, textChanged=>%s< index=%i, widgetPos=%i",
- type.latin1(),textChanged.latin1(), index, widgetPos );
+ Opie::Core::odebug << "ContactEditor::chooserChange( type=>" << type << "<, textChanged=>"
+ << textChanged << "< index=" << index << ", widgetPos=" << widgetPos
+ << " )" << oendl;
if ( type == "Default Email"){
- qWarning ("??? Wozu??: %s", textChanged.latin1());
+ Opie::Core::owarn << "??? Wozu??: " << textChanged << oendl;
defaultEmail = textChanged;
@@ -849,5 +853,5 @@ void ContactEditor::chooserChange( const QString &textChanged, int index,
}else if (type == "Emails"){
- qDebug("emails");
+ Opie::Core::odebug << "emails" << oendl;
QString de;
@@ -862,10 +866,10 @@ void ContactEditor::chooserChange( const QString &textChanged, int index,
void ContactEditor::slotChooser1Change( const QString &textChanged ) {
- qWarning("ContactEditor::slotChooser1Change( %s )", textChanged.latin1());
+ Opie::Core::owarn << "ContactEditor::slotChooser1Change( " << textChanged << " )" << oendl;
chooserChange( textChanged, cmbChooserField1->currentItem(), txtChooserField1, 1);
}
void ContactEditor::slotChooser2Change( const QString &textChanged ) {
- qWarning("ContactEditor::slotChooser2Change( %s )", textChanged.latin1());
+ Opie::Core::owarn << "ContactEditor::slotChooser2Change( " << textChanged << " )" << oendl;
chooserChange( textChanged, cmbChooserField2->currentItem(), txtChooserField2, 2);
@@ -873,10 +877,10 @@ void ContactEditor::slotChooser2Change( const QString &textChanged ) {
void ContactEditor::slotChooser3Change( const QString &textChanged ) {
- qWarning("ContactEditor::slotChooser3Change( %s )", textChanged.latin1());
+ Opie::Core::owarn << "ContactEditor::slotChooser3Change( " << textChanged << " )" << oendl;
chooserChange( textChanged, cmbChooserField3->currentItem(), txtChooserField3, 3);
}
void ContactEditor::slotChooser4Change( const QString &textChanged ) {
- qWarning("ContactEditor::slotChooser4Change( %s )", textChanged.latin1());
+ Opie::Core::owarn << "ContactEditor::slotChooser4Change( " << textChanged << " )" << oendl;
chooserChange( textChanged, cmbChooserField4->currentItem(), txtChooserField4, 4);
}
@@ -948,5 +952,5 @@ void ContactEditor::slotCountryChange( const QString &textChanged ) {
void ContactEditor::slotCmbChooser1Change( int index ) {
- qWarning("ContactEditor::slotCmbChooser1Change( %d )", index);
+ Opie::Core::owarn << "ContactEditor::slotCmbChooser1Change( " << index << " )" << oendl;
if ( !cmbChooserChange( cmbChooserField1->currentItem(), m_widgetStack1, 1) ){
@@ -959,5 +963,5 @@ void ContactEditor::slotCmbChooser1Change( int index ) {
void ContactEditor::slotCmbChooser2Change( int index ) {
- qWarning("ContactEditor::slotCmbChooser2Change( %d )", index);
+ Opie::Core::owarn << "ContactEditor::slotCmbChooser2Change( " << index << " )" << oendl;
if ( !cmbChooserChange( cmbChooserField2->currentItem(), m_widgetStack2, 2) ){
@@ -970,5 +974,5 @@ void ContactEditor::slotCmbChooser2Change( int index ) {
void ContactEditor::slotCmbChooser3Change( int index ) {
- qWarning("ContactEditor::slotCmbChooser3Change( %d )", index);
+ Opie::Core::owarn << "ContactEditor::slotCmbChooser3Change( " << index << " )" << oendl;
if ( !cmbChooserChange( cmbChooserField3->currentItem(), m_widgetStack3, 3) ){
@@ -981,5 +985,5 @@ void ContactEditor::slotCmbChooser3Change( int index ) {
void ContactEditor::slotCmbChooser4Change( int index ) {
- qWarning("ContactEditor::slotCmbChooser4Change( %d )", index);
+ Opie::Core::owarn << "ContactEditor::slotCmbChooser4Change( " << index << " )" << oendl;
if ( !cmbChooserChange( cmbChooserField4->currentItem(), m_widgetStack4, 4) ){
@@ -1026,5 +1030,5 @@ void ContactEditor::slotAddressTypeChange( int index ) {
void ContactEditor::slotFullNameChange( const QString &textChanged ) {
- qWarning( "ContactEditor::slotFullNameChange( %s )", textChanged.latin1() );
+ Opie::Core::owarn << "ContactEditor::slotFullNameChange( " << textChanged << " )" << oendl;
int index = cmbFileAs->currentItem();
@@ -1050,5 +1054,5 @@ void ContactEditor::slotSuffixChange( const QString& ) {
void ContactEditor::slotOrganizationChange( const QString &textChanged ){
- qWarning( "ContactEditor::slotOrganizationChange( %s )", textChanged.latin1() );
+ Opie::Core::owarn << "ContactEditor::slotOrganizationChange( " << textChanged << " )" << oendl;
// Special handling for storing Companies:
// If no Fullname is given, we store the Company-Name as lastname
@@ -1132,9 +1136,9 @@ QString ContactEditor::parseName( const QString fullName, int type ) {
bool haveLastName = false;
- qWarning("Fullname: %s", simplifiedName.latin1());
+ Opie::Core::owarn << "Fullname: " << simplifiedName << oendl;
commapos = simplifiedName.find( ',', 0, TRUE);
if ( commapos >= 0 ) {
- qWarning(" Commapos: %d", commapos );
+ Opie::Core::owarn << " Commapos: " << commapos << oendl;
// A comma (",") separates the lastname from one or
@@ -1145,5 +1149,5 @@ QString ContactEditor::parseName( const QString fullName, int type ) {
simplifiedName= simplifiedName.mid( commapos + 1 );
haveLastName = true;
- qWarning("Fullname without ',': %s", simplifiedName.latin1());
+ Opie::Core::owarn << "Fullname without ',': " << simplifiedName << oendl;
// If we have any lastname, we should now split all first names.
@@ -1179,8 +1183,8 @@ QString ContactEditor::parseName( const QString fullName, int type ) {
strFirstName = "";
- qWarning(" strFirstName: %s", strFirstName.latin1());
- qWarning(" strMiddleName: %s", strMiddleName.latin1());
- qWarning(" strLastName: %s", strLastName.latin1());
- qWarning(" strTitle: %s", strTitle.latin1());
+ Opie::Core::owarn << "strFirstName: " << strFirstName << oendl;
+ Opie::Core::owarn << "strMiddletName: " << strMiddleName << oendl;
+ Opie::Core::owarn << "strLastName: " << strLastName << oendl;
+ Opie::Core::owarn << "strTitle: " << strTitle << oendl;
switch (type) {
@@ -1265,5 +1269,5 @@ void ContactEditor::setEntry( const Opie::OPimContact &entry ) {
defaultEmail = ent.defaultEmail();
if (defaultEmail.isEmpty()) defaultEmail = emails[0];
- qDebug("default email=%s",defaultEmail.latin1());
+ Opie::Core::odebug << "default email=" << defaultEmail << oendl;
txtFirstName->setText( ent.firstName() );
@@ -1325,5 +1329,5 @@ void ContactEditor::setEntry( const Opie::OPimContact &entry ) {
for ( it = slDynamicEntries.begin(); itLE.current()/* != slDynamicEntries.end()*/; ++it, ++itLE) {
- qWarning(" Filling dynamic Field: %s", (*it).latin1() );
+ Opie::Core::owarn << " Filling dynamic Field: " << (*it) << oendl;
if ( *it == "Department" )
@@ -1349,5 +1353,5 @@ void ContactEditor::setEntry( const Opie::OPimContact &entry ) {
if ( *it == "Nickname" ){
- qWarning("**** Nichname: %s", ent.nickname().latin1() );
+ Opie::Core::owarn << "**** Nichname: " << ent.nickname() << oendl;
(*itLE)->setText( ent.nickname() );
}
@@ -1582,6 +1586,6 @@ void ContactEditor::saveEntry() {
parseEmailFrom( emails.join(","), defaultmail, allemail );
if ( defaultEmail.isEmpty() ){
- qWarning("Default email was not set by user!");
- qWarning("Using first email in list: %s", defaultmail.latin1());
+ Opie::Core::owarn << "Default email was not set by user!" << oendl;
+ Opie::Core::owarn << "Using first email in list: " << defaultmail << oendl;
ent.setDefaultEmail( defaultmail );
}
@@ -1735,5 +1739,5 @@ void ContactEditor::slotBirthdayDateChanged( int year, int month, int day)
void ContactEditor::slotRemoveBirthday()
{
- qWarning("void ContactEditor::slotRemoveBirthday()");
+ Opie::Core::owarn << "void ContactEditor::slotRemoveBirthday()" << oendl;
ent.setBirthday( QDate() );
updateDatePicker();
@@ -1742,5 +1746,5 @@ void ContactEditor::slotRemoveBirthday()
void ContactEditor::slotRemoveAnniversary()
{
- qWarning("void ContactEditor::slotRemoveAnniversary()");
+ Opie::Core::owarn << "void ContactEditor::slotRemoveAnniversary()" << oendl;
ent.setAnniversary( QDate() );
updateDatePicker();
diff --git a/core/pim/addressbook/opie-addressbook.control b/core/pim/addressbook/opie-addressbook.control
index 18a3791..882bdf3 100644
--- a/core/pim/addressbook/opie-addressbook.control
+++ b/core/pim/addressbook/opie-addressbook.control
@@ -6,5 +6,5 @@ Conflicts: qpe-tkcaddressbook
Maintainer: Stefan Eilers <eilers.stefan@epost.de>
Architecture: arm
-Depends: task-opie-minimal, opie-pics, libopiecore2, libopieui2, libopiepim2, libopiedb2
+Depends: task-opie-minimal, opie-pics, libopiecore2, libopieui2, libopiepim2
Description: Contacts
A simple addressbook for the Opie environment.
diff --git a/core/pim/addressbook/picker.cpp b/core/pim/addressbook/picker.cpp
index 7a20591..df3d6ac 100644
--- a/core/pim/addressbook/picker.cpp
+++ b/core/pim/addressbook/picker.cpp
@@ -1,4 +1,6 @@
#include "picker.h"
+#include <opie2/odebug.h>
+
#include <qtimer.h>
#include <qlayout.h>
@@ -6,5 +8,5 @@
char PickerLabel::lastLetter = '\0';
-PickerLabel::PickerLabel( QWidget *parent, const char *name )
+PickerLabel::PickerLabel( QWidget *parent, const char *name )
: QLabel ( parent, name )
{
@@ -31,15 +33,15 @@ void PickerLabel::setLetters( char ch1, char ch2, char ch3 )
QString tmpStr;
- if (ch1 != '\0')
+ if (ch1 != '\0')
letter1 = ch1;
else
letter1 = ' ';
- if (ch2 != '\0')
+ if (ch2 != '\0')
letter2 = ch2;
else
letter2 = ' ';
- if (ch3 != '\0')
+ if (ch3 != '\0')
letter3 = ch3;
else
@@ -62,5 +64,5 @@ void PickerLabel::clearLetter()
QString tmpStr;
-
+
tmpStr = "<qt>";
tmpStr += letter1;
@@ -77,10 +79,10 @@ void PickerLabel::clearLetter()
void PickerLabel::mousePressEvent( QMouseEvent* e )
{
- // If one pickerlabel is was, and an other is now selected, we
+ // If one pickerlabel is was, and an other is now selected, we
// have to simulate the releaseevent.. Otherwise the new label
- // will not get a highlighted letter..
+ // will not get a highlighted letter..
// Maybe there is a more intelligent solution, but this works and I am tired.. (se)
if ( ( currentLetter == 0 ) && ( lastLetter != '\0' ) ) mouseReleaseEvent( e );
-}
+}
void PickerLabel::mouseReleaseEvent( QMouseEvent* /* e */ )
@@ -90,5 +92,5 @@ void PickerLabel::mouseReleaseEvent( QMouseEvent* /* e */ )
if (lastLetter != letter1 && lastLetter != letter2 && lastLetter != letter3 && lastLetter != '\0')
QTimer::singleShot( 0, this, SLOT(emitClearSignal()) );
-
+
switch (currentLetter) {
case 0:
@@ -122,5 +124,5 @@ void PickerLabel::mouseReleaseEvent( QMouseEvent* /* e */ )
emit selectedLetter( letter2 );
break;
-
+
case 2:
tmpStr = "<qt>";
@@ -150,5 +152,5 @@ void PickerLabel::emitClearSignal() {
emit clearAll();
}
-
+
LetterPicker::LetterPicker( QWidget *parent, const char *name )
: QFrame( parent, name )
@@ -158,5 +160,5 @@ LetterPicker::LetterPicker( QWidget *parent, const char *name )
lblABC = new PickerLabel( this );
l->addWidget( lblABC );
-
+
lblDEF = new PickerLabel( this );
l->addWidget( lblDEF );
@@ -238,5 +240,5 @@ void LetterPicker::clear()
void LetterPicker::newLetter( char letter )
{
- qWarning("LetterClicked");
+ Opie::Core::owarn << "LetterClicked" << oendl;
emit letterClicked( letter );