-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 @@ -191,5 +191,5 @@ void Today::loadPlugins() { QString path = QPEApplication::qpeDir() + "/plugins/today"; #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" ); #else @@ -206,8 +206,8 @@ void Today::loadPlugins() { QLibrary *lib = new QLibrary( path + "/" + *it ); - 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; TodayPlugin plugin; @@ -223,5 +223,5 @@ void Today::loadPlugins() { lang = config.readEntry( "Language", "en" ); - Opie::Core::odebug << "Languages: " << lang << oendl; + odebug << "Languages: " << lang << oendl; QTranslator * trans = new QTranslator( qApp ); QString tfn = QPEApplication::qpeDir()+"/i18n/" + lang + "/" + type + ".qm"; @@ -274,5 +274,5 @@ void Today::loadPlugins() { } } else { - Opie::Core::odebug << "could not recognize " << path + "/" + *it << oendl; + odebug << "could not recognize " << path + "/" + *it << oendl; delete lib; } @@ -318,8 +318,8 @@ 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(); } @@ -398,5 +398,5 @@ void Today::reinitialize() { if ( !(*it).excludeRefresh ) { (*it).guiPart->reinitialize(); - Opie::Core::odebug << "reinit" << oendl; + odebug << "reinit" << oendl; } @@ -452,5 +452,5 @@ void Today::refresh() { if ( !(*it).excludeRefresh ) { (*it).guiPart->refresh(); - Opie::Core::odebug << "refresh" << oendl; + odebug << "refresh" << oendl; } } |