diff -r f27aebe284bb -r c5af8598d22c logsui/logsengine/tsrc/symbianos_stub/logsdbconnector_stub.cpp --- 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& /*ids*/) +bool LogsDbConnector::clearEvents(const QList& /*events*/) { logsLastCalledFunction = "clearEvents"; return true; @@ -127,13 +127,13 @@ // LogsDbConnector::markEventsSeen // ---------------------------------------------------------------------------- // -bool LogsDbConnector::markEventsSeen(const QList& ids) +bool LogsDbConnector::markEventsSeen(const QList& 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() { }