summaryrefslogtreecommitdiff
path: root/libopie2
authoreilers <eilers>2002-10-02 16:18:11 (UTC)
committer eilers <eilers>2002-10-02 16:18:11 (UTC)
commit1400bbe439c47f0bd168d602d961235c638a861b (patch) (side-by-side diff)
tree2612a28330ee6b48d6f06b476448cee66308c9f3 /libopie2
parent140d28d0fd72015616351702f085ca9f0c9a959c (diff)
downloadopie-1400bbe439c47f0bd168d602d961235c638a861b.zip
opie-1400bbe439c47f0bd168d602d961235c638a861b.tar.gz
opie-1400bbe439c47f0bd168d602d961235c638a861b.tar.bz2
debugged and seems to work almost perfectly ..
Diffstat (limited to 'libopie2') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiepim/core/ocontactaccess.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/libopie2/opiepim/core/ocontactaccess.cpp b/libopie2/opiepim/core/ocontactaccess.cpp
index 2d808f7..8a8ff08 100644
--- a/libopie2/opiepim/core/ocontactaccess.cpp
+++ b/libopie2/opiepim/core/ocontactaccess.cpp
@@ -21,6 +21,9 @@
* =====================================================================
* History:
* $Log$
+ * Revision 1.2 2002/10/02 16:18:11 eilers
+ * debugged and seems to work almost perfectly ..
+ *
* Revision 1.1 2002/09/27 17:11:44 eilers
* Added API for accessing the Contact-Database ! It is compiling, but
* please do not expect that anything is working !
@@ -61,7 +64,10 @@ OContactAccess::OContactAccess ( const QString appname, const QString filename,
if( end == 0 ) {
end = new OContactAccessBackend_XML( appname, filename );
}
+ // Set backend locally and in template
m_backEnd = end;
+ OPimAccessTemplate<OContact>::setBackEnd (end);
+
/* Connect signal of external db change to function */
QCopChannel *dbchannel = new QCopChannel( "QPE/PIM", this );
@@ -82,7 +88,7 @@ OContactAccess::~OContactAccess ()
*/
if ( m_changed )
save();
- delete m_backEnd;
+ // delete m_backEnd; is done by template..
}
bool OContactAccess::load()