summaryrefslogtreecommitdiff
authorllornkcor <llornkcor>2002-09-02 13:59:25 (UTC)
committer llornkcor <llornkcor>2002-09-02 13:59:25 (UTC)
commitffa6856b8ccbaa44d950b7f311011c990f656d47 (patch) (unidiff)
treedbfd44501dd6e70a2252b23e0fe50d81394ebc26
parent4d7f2095e3119cac9319ab6b48492705188ce5cb (diff)
downloadopie-ffa6856b8ccbaa44d950b7f311011c990f656d47.zip
opie-ffa6856b8ccbaa44d950b7f311011c990f656d47.tar.gz
opie-ffa6856b8ccbaa44d950b7f311011c990f656d47.tar.bz2
fix typo
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--core/launcher/desktop.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/launcher/desktop.cpp b/core/launcher/desktop.cpp
index 8756d37..bf19280 100644
--- a/core/launcher/desktop.cpp
+++ b/core/launcher/desktop.cpp
@@ -499,14 +499,14 @@ void Desktop::executeOrModify(const QString& appLnkFile)
499 499
500void Desktop::raiseDatebook() 500void Desktop::raiseDatebook()
501{ 501{
502 Config cfg( "qpe" ); //F9 'Activity' 502 Config cfg( "qpe" ); //F9 'Activity'
503 cfg.setGroup( "AppsKey" ); 503 cfg.setGroup( "AppsKey" );
504 QString tempItem; 504 QString tempItem;
505 tempItem = cfg.readEntry( "LeftEnd" , "Calender" ); 505 tempItem = cfg.readEntry( "LeftEnd" , "Calendar" );
506 if ( tempItem == "Calender" || tempItem.isEmpty() ) { 506 if ( tempItem == "Calendar" || tempItem.isEmpty() ) {
507 tempItem = "datebook"; 507 tempItem = "datebook";
508 } 508 }
509 QCopEnvelope e( "QPE/System", "execute(QString)" ); 509 QCopEnvelope e( "QPE/System", "execute(QString)" );
510 e << tempItem; 510 e << tempItem;
511} 511}
512 512