logsui/logsengine/tsrc/symbianos_stub/logsdbconnector_stub.cpp
changeset 16 c5af8598d22c
parent 0 4a5361db8937
child 17 90fe74753f71
--- a/logsui/logsengine/tsrc/symbianos_stub/logsdbconnector_stub.cpp	Wed Aug 18 09:49:12 2010 +0300
+++ b/logsui/logsengine/tsrc/symbianos_stub/logsdbconnector_stub.cpp	Thu Sep 02 20:27:05 2010 +0300
@@ -117,7 +117,7 @@
 // LogsDbConnector::clearEvents
 // ----------------------------------------------------------------------------
 //
-bool LogsDbConnector::clearEvents(const QList<int>& /*ids*/)
+bool LogsDbConnector::clearEvents(const QList<LogsEvent*>& /*events*/)
 {    
     logsLastCalledFunction = "clearEvents";
     return true;
@@ -127,13 +127,13 @@
 // LogsDbConnector::markEventsSeen
 // ----------------------------------------------------------------------------
 //
-bool LogsDbConnector::markEventsSeen(const QList<int>& ids)
+bool LogsDbConnector::markEventsSeen(const QList<LogsEvent*>& events)
 {
     bool started(false);
     logsLastCalledFunction = "markEventsSeen";
-    foreach( int currId, ids ){
-        if ( !mEventsSeen.contains(currId) ){
-            mEventsSeen.append(currId);
+    foreach( LogsEvent* currEv, events ){
+        if ( !mEventsSeen.contains(*currEv) ){
+            mEventsSeen.append(*currEv);
             started = true;
         }
     }
@@ -187,7 +187,7 @@
 // LogsDbConnector::readCompleted
 // ----------------------------------------------------------------------------
 //
-void LogsDbConnector::readCompleted(int /*numRead*/)
+void LogsDbConnector::readCompleted()
 {
 }