summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/pim/odatebookaccessbackend_sql.cpp11
-rw-r--r--libopie2/opiepim/backend/odatebookaccessbackend_sql.cpp11
2 files changed, 22 insertions, 0 deletions
diff --git a/libopie/pim/odatebookaccessbackend_sql.cpp b/libopie/pim/odatebookaccessbackend_sql.cpp
index e893b38..756f405 100644
--- a/libopie/pim/odatebookaccessbackend_sql.cpp
+++ b/libopie/pim/odatebookaccessbackend_sql.cpp
@@ -15,4 +15,7 @@
15 * History: 15 * History:
16 * $Log$ 16 * $Log$
17 * Revision 1.3 2003/12/22 11:41:39 eilers
18 * Fixing stupid bug, found by sourcode review..
19 *
17 * Revision 1.2 2003/12/22 10:19:26 eilers 20 * Revision 1.2 2003/12/22 10:19:26 eilers
18 * Finishing implementation of sql-backend for datebook. But I have to 21 * Finishing implementation of sql-backend for datebook. But I have to
@@ -207,4 +210,5 @@ OEvent ODateBookAccessBackend_SQL::find( int uid ) const{
207} 210}
208 211
212// FIXME: Speed up update of uid's..
209bool ODateBookAccessBackend_SQL::add( const OEvent& ev ) 213bool ODateBookAccessBackend_SQL::add( const OEvent& ev )
210{ 214{
@@ -245,8 +249,12 @@ bool ODateBookAccessBackend_SQL::add( const OEvent& ev )
245 return false; 249 return false;
246 } 250 }
251
252 // Update list of uid's
253 update();
247 254
248 return true; 255 return true;
249} 256}
250 257
258// FIXME: Speed up update of uid's..
251bool ODateBookAccessBackend_SQL::remove( int uid ) 259bool ODateBookAccessBackend_SQL::remove( int uid )
252{ 260{
@@ -262,4 +270,7 @@ bool ODateBookAccessBackend_SQL::remove( int uid )
262 } 270 }
263 271
272 // Update list of uid's
273 update();
274
264 return true; 275 return true;
265} 276}
diff --git a/libopie2/opiepim/backend/odatebookaccessbackend_sql.cpp b/libopie2/opiepim/backend/odatebookaccessbackend_sql.cpp
index e893b38..756f405 100644
--- a/libopie2/opiepim/backend/odatebookaccessbackend_sql.cpp
+++ b/libopie2/opiepim/backend/odatebookaccessbackend_sql.cpp
@@ -15,4 +15,7 @@
15 * History: 15 * History:
16 * $Log$ 16 * $Log$
17 * Revision 1.3 2003/12/22 11:41:39 eilers
18 * Fixing stupid bug, found by sourcode review..
19 *
17 * Revision 1.2 2003/12/22 10:19:26 eilers 20 * Revision 1.2 2003/12/22 10:19:26 eilers
18 * Finishing implementation of sql-backend for datebook. But I have to 21 * Finishing implementation of sql-backend for datebook. But I have to
@@ -207,4 +210,5 @@ OEvent ODateBookAccessBackend_SQL::find( int uid ) const{
207} 210}
208 211
212// FIXME: Speed up update of uid's..
209bool ODateBookAccessBackend_SQL::add( const OEvent& ev ) 213bool ODateBookAccessBackend_SQL::add( const OEvent& ev )
210{ 214{
@@ -245,8 +249,12 @@ bool ODateBookAccessBackend_SQL::add( const OEvent& ev )
245 return false; 249 return false;
246 } 250 }
251
252 // Update list of uid's
253 update();
247 254
248 return true; 255 return true;
249} 256}
250 257
258// FIXME: Speed up update of uid's..
251bool ODateBookAccessBackend_SQL::remove( int uid ) 259bool ODateBookAccessBackend_SQL::remove( int uid )
252{ 260{
@@ -262,4 +270,7 @@ bool ODateBookAccessBackend_SQL::remove( int uid )
262 } 270 }
263 271
272 // Update list of uid's
273 update();
274
264 return true; 275 return true;
265} 276}