summaryrefslogtreecommitdiff
path: root/libopie2/opiepim/core/opimresolver.cpp
Unidiff
Diffstat (limited to 'libopie2/opiepim/core/opimresolver.cpp') (more/less context) (show whitespace changes)
-rw-r--r--libopie2/opiepim/core/opimresolver.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/libopie2/opiepim/core/opimresolver.cpp b/libopie2/opiepim/core/opimresolver.cpp
index eceabcb..73d7de1 100644
--- a/libopie2/opiepim/core/opimresolver.cpp
+++ b/libopie2/opiepim/core/opimresolver.cpp
@@ -5,57 +5,58 @@
5 .=l. 5 .=l.
6 .>+-= 6 .>+-=
7 _;:, .> :=|. This program is free software; you can 7 _;:, .> :=|. This program is free software; you can
8.> <`_, > . <= redistribute it and/or modify it under 8.> <`_, > . <= redistribute it and/or modify it under
9:`=1 )Y*s>-.-- : the terms of the GNU Library General Public 9:`=1 )Y*s>-.-- : the terms of the GNU Library General Public
10.="- .-=="i, .._ License as published by the Free Software 10.="- .-=="i, .._ License as published by the Free Software
11 - . .-<_> .<> Foundation; either version 2 of the License, 11 - . .-<_> .<> Foundation; either version 2 of the License,
12 ._= =} : or (at your option) any later version. 12 ._= =} : or (at your option) any later version.
13 .%`+i> _;_. 13 .%`+i> _;_.
14 .i_,=:_. -<s. This program is distributed in the hope that 14 .i_,=:_. -<s. This program is distributed in the hope that
15 + . -:. = it will be useful, but WITHOUT ANY WARRANTY; 15 + . -:. = it will be useful, but WITHOUT ANY WARRANTY;
16 : .. .:, . . . without even the implied warranty of 16 : .. .:, . . . without even the implied warranty of
17 =_ + =;=|` MERCHANTABILITY or FITNESS FOR A 17 =_ + =;=|` MERCHANTABILITY or FITNESS FOR A
18 _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU 18 _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU
19..}^=.= = ; Library General Public License for more 19..}^=.= = ; Library General Public License for more
20++= -. .` .: details. 20++= -. .` .: details.
21 : = ...= . :.=- 21 : = ...= . :.=-
22 -. .:....=;==+<; You should have received a copy of the GNU 22 -. .:....=;==+<; You should have received a copy of the GNU
23 -_. . . )=. = Library General Public License along with 23 -_. . . )=. = Library General Public License along with
24 -- :-=` this library; see the file COPYING.LIB. 24 -- :-=` this library; see the file COPYING.LIB.
25 If not, write to the Free Software Foundation, 25 If not, write to the Free Software Foundation,
26 Inc., 59 Temple Place - Suite 330, 26 Inc., 59 Temple Place - Suite 330,
27 Boston, MA 02111-1307, USA. 27 Boston, MA 02111-1307, USA.
28*/ 28*/
29#include <qcopchannel_qws.h>
30 29
31#include <qpe/qcopenvelope_qws.h> 30#include "opimresolver.h"
32 31
33#include <opie2/otodoaccess.h> 32/* OPIE */
34#include <opie2/ocontactaccess.h> 33#include <opie2/ocontactaccess.h>
34#include <opie2/otodoaccess.h>
35#include <qpe/qcopenvelope_qws.h>
35 36
36//#include "opimfactory.h" 37/* QT */
37#include <opie2/opimresolver.h> 38#include <qcopchannel_qws.h>
38 39
39namespace Opie { 40namespace Opie {
40 41
41OPimResolver* OPimResolver::m_self = 0l; 42OPimResolver* OPimResolver::m_self = 0l;
42 43
43OPimResolver::OPimResolver() { 44OPimResolver::OPimResolver() {
44 /* the built in channels */ 45 /* the built in channels */
45 m_builtIns << "Todolist" << "Addressbook" << "Datebook"; 46 m_builtIns << "Todolist" << "Addressbook" << "Datebook";
46} 47}
47OPimResolver* OPimResolver::self() { 48OPimResolver* OPimResolver::self() {
48 if (!m_self) 49 if (!m_self)
49 m_self = new OPimResolver(); 50 m_self = new OPimResolver();
50 51
51 return m_self; 52 return m_self;
52} 53}
53 54
54/* 55/*
55 * FIXME use a cache here too 56 * FIXME use a cache here too
56 */ 57 */
57OPimRecord* OPimResolver::record( const QString& service, int uid ) { 58OPimRecord* OPimResolver::record( const QString& service, int uid ) {
58 OPimRecord* rec = 0l; 59 OPimRecord* rec = 0l;
59 OPimBase* base = backend( service ); 60 OPimBase* base = backend( service );
60 61
61 if ( base ) 62 if ( base )