summaryrefslogtreecommitdiff
path: root/core/pim
authoreilers <eilers>2003-08-01 12:30:16 (UTC)
committer eilers <eilers>2003-08-01 12:30:16 (UTC)
commit6c715b67a8f0e32a4edca5be91332622834c8d91 (patch) (unidiff)
treeae2d660e1fd9c990c2d725c075ce6c42480b0af8 /core/pim
parentcb45aa10043fdd6fddcab42ef0e07ddafc3d506d (diff)
downloadopie-6c715b67a8f0e32a4edca5be91332622834c8d91.zip
opie-6c715b67a8f0e32a4edca5be91332622834c8d91.tar.gz
opie-6c715b67a8f0e32a4edca5be91332622834c8d91.tar.bz2
Merging changes from BRANCH_1_0 to HEAD
Diffstat (limited to 'core/pim') (more/less context) (show whitespace changes)
-rw-r--r--core/pim/addressbook/addressbook.cpp23
-rw-r--r--core/pim/addressbook/contacteditor.cpp2
-rw-r--r--core/pim/addressbook/opie-addressbook.control6
-rw-r--r--core/pim/addressbook/version.h6
4 files changed, 21 insertions, 16 deletions
diff --git a/core/pim/addressbook/addressbook.cpp b/core/pim/addressbook/addressbook.cpp
index 34bf7f1..6819085 100644
--- a/core/pim/addressbook/addressbook.cpp
+++ b/core/pim/addressbook/addressbook.cpp
@@ -2,4 +2,5 @@
2** Copyright (C) 2000 Trolltech AS. All rights reserved. 2** Copyright (C) 2000 Trolltech AS. All rights reserved.
3** Copyright (C) 2003 Stefan Eilers (eilers.stefan@epost.de)
3** 4**
4** This file is part of Qt Palmtop Environment. 5** This file is part of the Open Palmtop Environment (see www.opie.info).
5** 6**
@@ -15,4 +16,2 @@
15** 16**
16** OContact info@trolltech.com if any conditions of this licensing are
17** not clear to you.
18** 17**
@@ -115,3 +114,3 @@ AddressbookWindow::AddressbookWindow( QWidget *parent, const char *name,
115 // View Icons 114 // View Icons
116 m_tableViewButton = new QAction( tr( "List" ), Resource::loadPixmap( "addressbook/weeklst" ), 115 m_tableViewButton = new QAction( tr( "List" ), Resource::loadPixmap( "addressbook/listview" ),
117 QString::null, 0, this, 0 ); 116 QString::null, 0, this, 0 );
@@ -120,3 +119,3 @@ AddressbookWindow::AddressbookWindow( QWidget *parent, const char *name,
120 m_tableViewButton->addTo( listTools ); 119 m_tableViewButton->addTo( listTools );
121 m_cardViewButton = new QAction( tr( "Card" ), Resource::loadPixmap( "day" ), QString::null, 0, this, 0 ); 120 m_cardViewButton = new QAction( tr( "Card" ), Resource::loadPixmap( "addressbook/cardview" ), QString::null, 0, this, 0 );
122 connect( m_cardViewButton, SIGNAL( activated() ), this, SLOT( slotCardView() ) ); 121 connect( m_cardViewButton, SIGNAL( activated() ), this, SLOT( slotCardView() ) );
@@ -654,4 +653,6 @@ void AddressbookWindow::appMessage(const QCString &msg, const QByteArray &data)
654{ 653{
654 bool needShow = FALSE;
655 qWarning("Receiving QCop-Call with message %s", QString( msg ).latin1() ); 655 qWarning("Receiving QCop-Call with message %s", QString( msg ).latin1() );
656 656
657
657 if (msg == "editPersonal()") { 658 if (msg == "editPersonal()") {
@@ -691,2 +692,3 @@ void AddressbookWindow::appMessage(const QCString &msg, const QByteArray &data)
691 } else if ( msg == "show(int)" ) { 692 } else if ( msg == "show(int)" ) {
693 raise();
692 QDataStream stream(data,IO_ReadOnly); 694 QDataStream stream(data,IO_ReadOnly);
@@ -708,4 +710,4 @@ void AddressbookWindow::appMessage(const QCString &msg, const QByteArray &data)
708 710
709 showMaximized(); 711 needShow = true;
710 qApp->exec(); 712
711 713
@@ -728,2 +730,5 @@ void AddressbookWindow::appMessage(const QCString &msg, const QByteArray &data)
728 730
731 if (needShow)
732 QPEApplication::setKeepRunning();
733
729} 734}
@@ -902,3 +907,3 @@ void AddressbookWindow::slotNotFound()
902 QMessageBox::information( this, tr( "Not Found" ), 907 QMessageBox::information( this, tr( "Not Found" ),
903 tr( "Unable to find a contact for this \n search pattern!" ) ); 908 "<qt>" + tr( "Unable to find a contact for this search pattern!" ) + "</qt>" );
904 909
@@ -952,3 +957,3 @@ void AddressbookWindow::slotSetCategory( int c )
952 cat = "Unfiled"; 957 cat = "Unfiled";
953 qWarning ("Unfiled selected!!!"); 958 qWarning ("Unfiled selected!");
954 }else{ 959 }else{
diff --git a/core/pim/addressbook/contacteditor.cpp b/core/pim/addressbook/contacteditor.cpp
index ce14f98..9d1a1c7 100644
--- a/core/pim/addressbook/contacteditor.cpp
+++ b/core/pim/addressbook/contacteditor.cpp
@@ -599,3 +599,3 @@ void ContactEditor::init() {
599 599
600 l = new QLabel( mapIdToStr[mapStrToID[*it]].utf8() , container ); 600 l = new QLabel( mapIdToStr[mapStrToID[*it]], container );
601 listName.append( l ); 601 listName.append( l );
diff --git a/core/pim/addressbook/opie-addressbook.control b/core/pim/addressbook/opie-addressbook.control
index f06fa91..d949bd4 100644
--- a/core/pim/addressbook/opie-addressbook.control
+++ b/core/pim/addressbook/opie-addressbook.control
@@ -1,3 +1,3 @@
1Package: opie-addressbook 1Package: opie-addressbook
2Files: bin/addressbook apps/1Pim/addressbook.desktop pics/addressbook/*.png 2Files: bin/addressbook apps/1Pim/addressbook.desktop
3Priority: optional 3Priority: optional
@@ -7,5 +7,5 @@ Maintainer: Stefan Eilers <eilers.stefan@epost.de>
7Architecture: arm 7Architecture: arm
8Version: $QPE_VERSION-$SUB_VERSION 8Depends: task-opie-minimal, libopie1, opie-pics
9Depends: task-opie-minimal, libopie1
10Description: Contacts 9Description: Contacts
11 A simple addressbook for the Opie environment. 10 A simple addressbook for the Opie environment.
11Version: $QPE_VERSION$EXTRAVERSION
diff --git a/core/pim/addressbook/version.h b/core/pim/addressbook/version.h
index 4c93584..9621826 100644
--- a/core/pim/addressbook/version.h
+++ b/core/pim/addressbook/version.h
@@ -3,5 +3,5 @@
3 3
4#define MAINVERSION "0" 4#define MAINVERSION "1"
5#define SUBVERSION "9" 5#define SUBVERSION "0"
6#define PATCHVERSION "5" 6#define PATCHVERSION "0"
7 7