-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() { | |||
191 | QString path = QPEApplication::qpeDir() + "/plugins/today"; | 191 | QString path = QPEApplication::qpeDir() + "/plugins/today"; |
192 | #ifdef Q_OS_MACX | 192 | #ifdef Q_OS_MACX |
193 | Opie::Core::owarn << "Searching for Plugins in: " << path << oendl; | 193 | owarn << "Searching for Plugins in: " << path << oendl; |
194 | QDir dir( path, "lib*.dylib" ); | 194 | QDir dir( path, "lib*.dylib" ); |
195 | #else | 195 | #else |
@@ -206,8 +206,8 @@ void Today::loadPlugins() { | |||
206 | QLibrary *lib = new QLibrary( path + "/" + *it ); | 206 | QLibrary *lib = new QLibrary( path + "/" + *it ); |
207 | 207 | ||
208 | Opie::Core::odebug << "querying: " << path + "/" + *it << oendl; | 208 | odebug << "querying: " << path + "/" + *it << oendl; |
209 | if ( lib->queryInterface( IID_TodayPluginInterface, (QUnknownInterface**)&iface ) == QS_OK ) { | 209 | if ( lib->queryInterface( IID_TodayPluginInterface, (QUnknownInterface**)&iface ) == QS_OK ) { |
210 | Opie::Core::odebug << "accepted: " << path + "/" + *it << oendl; | 210 | odebug << "accepted: " << path + "/" + *it << oendl; |
211 | Opie::Core::odebug << *it << oendl; | 211 | odebug << *it << oendl; |
212 | 212 | ||
213 | TodayPlugin plugin; | 213 | TodayPlugin plugin; |
@@ -223,5 +223,5 @@ void Today::loadPlugins() { | |||
223 | lang = config.readEntry( "Language", "en" ); | 223 | lang = config.readEntry( "Language", "en" ); |
224 | 224 | ||
225 | Opie::Core::odebug << "Languages: " << lang << oendl; | 225 | odebug << "Languages: " << lang << oendl; |
226 | QTranslator * trans = new QTranslator( qApp ); | 226 | QTranslator * trans = new QTranslator( qApp ); |
227 | QString tfn = QPEApplication::qpeDir()+"/i18n/" + lang + "/" + type + ".qm"; | 227 | QString tfn = QPEApplication::qpeDir()+"/i18n/" + lang + "/" + type + ".qm"; |
@@ -274,5 +274,5 @@ void Today::loadPlugins() { | |||
274 | } | 274 | } |
275 | } else { | 275 | } else { |
276 | Opie::Core::odebug << "could not recognize " << path + "/" + *it << oendl; | 276 | odebug << "could not recognize " << path + "/" + *it << oendl; |
277 | delete lib; | 277 | delete lib; |
278 | } | 278 | } |
@@ -318,8 +318,8 @@ void Today::draw() { | |||
318 | 318 | ||
319 | if ( plugin.active ) { | 319 | if ( plugin.active ) { |
320 | //Opie::Core::odebug << plugin.name << " is ACTIVE " << oendl; | 320 | //odebug << plugin.name << " is ACTIVE " << oendl; |
321 | plugin.guiBox->show(); | 321 | plugin.guiBox->show(); |
322 | } else { | 322 | } else { |
323 | //Opie::Core::odebug << plugin.name << " is INACTIVE " << oendl; | 323 | //odebug << plugin.name << " is INACTIVE " << oendl; |
324 | plugin.guiBox->hide(); | 324 | plugin.guiBox->hide(); |
325 | } | 325 | } |
@@ -398,5 +398,5 @@ void Today::reinitialize() { | |||
398 | if ( !(*it).excludeRefresh ) { | 398 | if ( !(*it).excludeRefresh ) { |
399 | (*it).guiPart->reinitialize(); | 399 | (*it).guiPart->reinitialize(); |
400 | Opie::Core::odebug << "reinit" << oendl; | 400 | odebug << "reinit" << oendl; |
401 | } | 401 | } |
402 | 402 | ||
@@ -452,5 +452,5 @@ void Today::refresh() { | |||
452 | if ( !(*it).excludeRefresh ) { | 452 | if ( !(*it).excludeRefresh ) { |
453 | (*it).guiPart->refresh(); | 453 | (*it).guiPart->refresh(); |
454 | Opie::Core::odebug << "refresh" << oendl; | 454 | odebug << "refresh" << oendl; |
455 | } | 455 | } |
456 | } | 456 | } |