-rw-r--r-- | libopie2/opiepim/backend/obackendfactory.h | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/libopie2/opiepim/backend/obackendfactory.h b/libopie2/opiepim/backend/obackendfactory.h index 89b8c58..b796fb8 100644 --- a/libopie2/opiepim/backend/obackendfactory.h +++ b/libopie2/opiepim/backend/obackendfactory.h @@ -17,4 +17,7 @@ * History: * $Log$ + * Revision 1.4 2002/10/14 15:55:18 eilers + * Redeactivate SQL.. ;) + * * Revision 1.3 2002/10/10 17:08:58 zecke * The Cache is finally in place @@ -46,8 +49,8 @@ #include "ocontactaccessbackend_xml.h" -/*#ifdef __USE_SQL +#ifdef __USE_SQL #include "otodoaccesssql.h" #endif -*/ + template<class T> @@ -65,4 +68,5 @@ class OBackendFactory static T* Default( const QString backendName, const QString& appName ){ + // __asm__("int3"); Config config( "pimaccess" ); @@ -81,11 +85,11 @@ class OBackendFactory switch ( *dict.take( backendName ) ){ case TODO: -/*#ifdef __USE_SQL +#ifdef __USE_SQL if ( backend == "sql" ) return (T*) new OTodoAccessBackendSQL(""); -#else*/ +#else if ( backend == "sql" ) qWarning ("OBackendFactory:: sql Backend not implemented! Using XML instead!"); -//#endif +#endif return (T*) new OTodoAccessXML( appName ); |