-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 | |||
@@ -189,9 +189,9 @@ void Today::loadPlugins() { | |||
189 | } | 189 | } |
190 | 190 | ||
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 |
196 | QDir dir( path, "lib*.so" ); | 196 | QDir dir( path, "lib*.so" ); |
197 | #endif | 197 | #endif |
@@ -204,12 +204,12 @@ void Today::loadPlugins() { | |||
204 | for ( it = list.begin(); it != list.end(); ++it ) { | 204 | for ( it = list.begin(); it != list.end(); ++it ) { |
205 | QInterfacePtr<TodayPluginInterface> iface; | 205 | QInterfacePtr<TodayPluginInterface> iface; |
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; |
214 | plugin.library = lib; | 214 | plugin.library = lib; |
215 | plugin.iface = iface; | 215 | plugin.iface = iface; |
@@ -221,9 +221,9 @@ void Today::loadPlugins() { | |||
221 | Config config("locale"); | 221 | Config config("locale"); |
222 | config.setGroup("Language"); | 222 | config.setGroup("Language"); |
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"; |
228 | if ( trans->load( tfn ) ) { | 228 | if ( trans->load( tfn ) ) { |
229 | qApp->installTranslator( trans ); | 229 | qApp->installTranslator( trans ); |
@@ -272,9 +272,9 @@ void Today::loadPlugins() { | |||
272 | else if ( !m_allApplets.contains( plugin.name ) ) { | 272 | else if ( !m_allApplets.contains( plugin.name ) ) { |
273 | pluginList.append( plugin ); | 273 | pluginList.append( plugin ); |
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 | } |
279 | 279 | ||
280 | } | 280 | } |
@@ -316,12 +316,12 @@ void Today::draw() { | |||
316 | for ( uint i = 0; i < pluginList.count(); i++ ) { | 316 | for ( uint i = 0; i < pluginList.count(); i++ ) { |
317 | plugin = pluginList[i]; | 317 | plugin = pluginList[i]; |
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 | } |
326 | count++; | 326 | count++; |
327 | } | 327 | } |
@@ -396,9 +396,9 @@ void Today::reinitialize() { | |||
396 | QValueList<TodayPlugin>::Iterator it; | 396 | QValueList<TodayPlugin>::Iterator it; |
397 | for ( it = pluginList.begin(); it != pluginList.end(); ++it ) { | 397 | for ( it = pluginList.begin(); it != pluginList.end(); ++it ) { |
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 | ||
403 | /* check if plugins is still to be shown */ | 403 | /* check if plugins is still to be shown */ |
404 | if ( m_excludeApplets.grep( (*it).name ).isEmpty() ) { | 404 | if ( m_excludeApplets.grep( (*it).name ).isEmpty() ) { |
@@ -450,9 +450,9 @@ void Today::refresh() { | |||
450 | QValueList<TodayPlugin>::Iterator it; | 450 | QValueList<TodayPlugin>::Iterator it; |
451 | for ( it = pluginList.begin(); it != pluginList.end(); ++it ) { | 451 | for ( it = pluginList.begin(); it != pluginList.end(); ++it ) { |
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 | } |
457 | 457 | ||
458 | DateLabel->setText( QString( "<font color=#FFFFFF>" + TimeString::longDateString( QDate::currentDate() ) + "</font>" ) ); | 458 | DateLabel->setText( QString( "<font color=#FFFFFF>" + TimeString::longDateString( QDate::currentDate() ) + "</font>" ) ); |