summaryrefslogtreecommitdiff
path: root/core
authorharlekin <harlekin>2002-11-21 17:22:36 (UTC)
committer harlekin <harlekin>2002-11-21 17:22:36 (UTC)
commit9e4b4807e89a5ccea45a119db9e7d8d02972dc98 (patch) (side-by-side diff)
tree6f47567e6ea18ce9d54b40678d6fc3cf762d1cee /core
parent7a425e527b7ed11cd113365e6c45ebecd0d72c79 (diff)
downloadopie-9e4b4807e89a5ccea45a119db9e7d8d02972dc98.zip
opie-9e4b4807e89a5ccea45a119db9e7d8d02972dc98.tar.gz
opie-9e4b4807e89a5ccea45a119db9e7d8d02972dc98.tar.bz2
better way to launch edit personal data
Diffstat (limited to 'core') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/today.cpp16
-rw-r--r--core/pim/today/today.h1
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
@@ -185,12 +185,10 @@ 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 {
@@ -355,7 +353,7 @@ 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() ) );
@@ -373,12 +371,6 @@ void Today::refresh() {
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() );
@@ -388,11 +380,7 @@ 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
@@ -45,7 +45,6 @@ class Today : public TodayBase {
private slots:
void startConfig();
- void startAddressbook();
void startApplication();
void editCard();
void refresh();