summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/today.cpp20
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
@@ -187,13 +187,13 @@ void Today::loadPlugins() {
}
pluginList.clear();
}
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
QDir dir( path, "lib*.so" );
#endif
QStringList list = dir.entryList();
@@ -202,16 +202,16 @@ void Today::loadPlugins() {
// QMap<QString, TodayPlugin> tempList;
for ( it = list.begin(); it != list.end(); ++it ) {
QInterfacePtr<TodayPluginInterface> iface;
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;
plugin.library = lib;
plugin.iface = iface;
plugin.name = QString(*it);
@@ -219,13 +219,13 @@ void Today::loadPlugins() {
QString lang;
Config config("locale");
config.setGroup("Language");
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";
if ( trans->load( tfn ) ) {
qApp->installTranslator( trans );
} else {
delete trans;
@@ -270,13 +270,13 @@ void Today::loadPlugins() {
// if plugin is not yet in the list, add it to the layout too
else if ( !m_allApplets.contains( plugin.name ) ) {
pluginList.append( plugin );
}
} else {
- Opie::Core::odebug << "could not recognize " << path + "/" + *it << oendl;
+ odebug << "could not recognize " << path + "/" + *it << oendl;
delete lib;
}
}
@@ -314,16 +314,16 @@ void Today::draw() {
uint count = 0;
TodayPlugin plugin;
for ( uint i = 0; i < pluginList.count(); i++ ) {
plugin = pluginList[i];
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();
}
count++;
}
if ( count == 0 ) {
@@ -394,13 +394,13 @@ void Today::reinitialize() {
/* reinitialize all plugins */
QValueList<TodayPlugin>::Iterator it;
for ( it = pluginList.begin(); it != pluginList.end(); ++it ) {
if ( !(*it).excludeRefresh ) {
(*it).guiPart->reinitialize();
- Opie::Core::odebug << "reinit" << oendl;
+ odebug << "reinit" << oendl;
}
/* check if plugins is still to be shown */
if ( m_excludeApplets.grep( (*it).name ).isEmpty() ) {
(*it).active = true;
} else {
@@ -448,13 +448,13 @@ void Today::reinitialize() {
void Today::refresh() {
QValueList<TodayPlugin>::Iterator it;
for ( it = pluginList.begin(); it != pluginList.end(); ++it ) {
if ( !(*it).excludeRefresh ) {
(*it).guiPart->refresh();
- Opie::Core::odebug << "refresh" << oendl;
+ odebug << "refresh" << oendl;
}
}
DateLabel->setText( QString( "<font color=#FFFFFF>" + TimeString::longDateString( QDate::currentDate() ) + "</font>" ) );
updateGeometry();