author | harlekin <harlekin> | 2002-11-21 17:22:36 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-11-21 17:22:36 (UTC) |
commit | 9e4b4807e89a5ccea45a119db9e7d8d02972dc98 (patch) (side-by-side diff) | |
tree | 6f47567e6ea18ce9d54b40678d6fc3cf762d1cee /core | |
parent | 7a425e527b7ed11cd113365e6c45ebecd0d72c79 (diff) | |
download | opie-9e4b4807e89a5ccea45a119db9e7d8d02972dc98.zip opie-9e4b4807e89a5ccea45a119db9e7d8d02972dc98.tar.gz opie-9e4b4807e89a5ccea45a119db9e7d8d02972dc98.tar.bz2 |
better way to launch edit personal data
-rw-r--r-- | core/pim/today/today.cpp | 16 | ||||
-rw-r--r-- | core/pim/today/today.h | 1 |
2 files changed, 2 insertions, 15 deletions
diff --git a/core/pim/today/today.cpp b/core/pim/today/today.cpp index 1b31cfd..e6f8c93 100644 --- a/core/pim/today/today.cpp +++ b/core/pim/today/today.cpp @@ -184,14 +184,12 @@ void Today::loadPlugins() { if ( pluginListRefreshExclude.contains( (*it) ) ) { // if its not in allApplets list, add it to a layout if ( !m_allApplets.contains( pluginListRefreshExclude[(*it)].name ) ) { - qDebug( "NUGASDA" ); layout->addWidget( pluginListRefreshExclude[(*it)].guiBox ); pluginList.append( pluginListRefreshExclude[(*it)] ); } else { tempList.insert( pluginListRefreshExclude[(*it)].name, pluginListRefreshExclude[(*it)] ); - qDebug( "TEST2 " + pluginListRefreshExclude[(*it)].name ); } } else { TodayPlugin plugin; @@ -354,9 +352,9 @@ void Today::startConfig() { */ void Today::refresh() { init(); - qDebug(" refresh "); + // qDebug(" refresh "); // set the date in top label QDate date = QDate::currentDate(); QString time = ( tr( date.toString() ) ); @@ -372,14 +370,8 @@ void Today::refresh() { loadPlugins(); draw(); } -void Today::startAddressbook() { - QCopEnvelope e( "QPE/System", "execute(QString)" ); - e << QString( "addressbook" ); -} - - void Today::startApplication() { QCopEnvelope e( "QPE/System", "execute(QString)" ); e << QString( sender()->name() ); } @@ -387,13 +379,9 @@ void Today::startApplication() { /** * launch addressbook (personal card) */ void Today::editCard() { - startAddressbook(); - while( !QCopChannel::isRegistered( "QPE/Addressbook" ) ) { - qApp->processEvents(); - } - QCopEnvelope v( "QPE/Addressbook", "editPersonalAndClose()" ); + QCopEnvelope env( "QPE/Application/addressbook", "editPersonalAndClose()" ); } Today::~Today() { } diff --git a/core/pim/today/today.h b/core/pim/today/today.h index 4485a0b..35b7ee3 100644 --- a/core/pim/today/today.h +++ b/core/pim/today/today.h @@ -44,9 +44,8 @@ class Today : public TodayBase { ~Today(); private slots: void startConfig(); - void startAddressbook(); void startApplication(); void editCard(); void refresh(); |