author | mickeyl <mickeyl> | 2004-04-04 17:22:44 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-04-04 17:22:44 (UTC) |
commit | ea3708cbc40ebc5f1db70546f0a93e8a23ba967c (patch) (side-by-side diff) | |
tree | 7262b5c61f96db0062d8e079dbb50d9ad5f2045e /core | |
parent | 5dc77f8c1ef0b22d208a629ebbb61476909569be (diff) | |
download | opie-ea3708cbc40ebc5f1db70546f0a93e8a23ba967c.zip opie-ea3708cbc40ebc5f1db70546f0a93e8a23ba967c.tar.gz opie-ea3708cbc40ebc5f1db70546f0a93e8a23ba967c.tar.bz2 |
fix odebug usage
-rw-r--r-- | core/pim/today/today.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/core/pim/today/today.cpp b/core/pim/today/today.cpp index 3ddb88d..0a6269e 100644 --- a/core/pim/today/today.cpp +++ b/core/pim/today/today.cpp @@ -192,3 +192,3 @@ void Today::loadPlugins() { #ifdef Q_OS_MACX - Opie::Core::owarn << "Searching for Plugins in: " << path << oendl; + owarn << "Searching for Plugins in: " << path << oendl; QDir dir( path, "lib*.dylib" ); @@ -207,6 +207,6 @@ void Today::loadPlugins() { - Opie::Core::odebug << "querying: " << path + "/" + *it << oendl; + odebug << "querying: " << path + "/" + *it << oendl; if ( lib->queryInterface( IID_TodayPluginInterface, (QUnknownInterface**)&iface ) == QS_OK ) { - Opie::Core::odebug << "accepted: " << path + "/" + *it << oendl; - Opie::Core::odebug << *it << oendl; + odebug << "accepted: " << path + "/" + *it << oendl; + odebug << *it << oendl; @@ -224,3 +224,3 @@ void Today::loadPlugins() { - Opie::Core::odebug << "Languages: " << lang << oendl; + odebug << "Languages: " << lang << oendl; QTranslator * trans = new QTranslator( qApp ); @@ -275,3 +275,3 @@ void Today::loadPlugins() { } else { - Opie::Core::odebug << "could not recognize " << path + "/" + *it << oendl; + odebug << "could not recognize " << path + "/" + *it << oendl; delete lib; @@ -319,6 +319,6 @@ void Today::draw() { if ( plugin.active ) { - //Opie::Core::odebug << plugin.name << " is ACTIVE " << oendl; + //odebug << plugin.name << " is ACTIVE " << oendl; plugin.guiBox->show(); } else { - //Opie::Core::odebug << plugin.name << " is INACTIVE " << oendl; + //odebug << plugin.name << " is INACTIVE " << oendl; plugin.guiBox->hide(); @@ -399,3 +399,3 @@ void Today::reinitialize() { (*it).guiPart->reinitialize(); - Opie::Core::odebug << "reinit" << oendl; + odebug << "reinit" << oendl; } @@ -453,3 +453,3 @@ void Today::refresh() { (*it).guiPart->refresh(); - Opie::Core::odebug << "refresh" << oendl; + odebug << "refresh" << oendl; } |