-rw-r--r-- | libopie2/opiepim/core/ocontactaccess.cpp | 8 |
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 @@ -22,4 +22,7 @@ * 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 @@ -62,5 +65,8 @@ OContactAccess::OContactAccess ( const QString appname, const QString filename, 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 */ @@ -83,5 +89,5 @@ OContactAccess::~OContactAccess () if ( m_changed ) save(); - delete m_backEnd; + // delete m_backEnd; is done by template.. } |