summaryrefslogtreecommitdiff
path: root/include/m_database.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/m_database.h')
-rw-r--r--include/m_database.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/include/m_database.h b/include/m_database.h
index 03f99ee21e..c47f3ef872 100644
--- a/include/m_database.h
+++ b/include/m_database.h
@@ -707,13 +707,11 @@ class MIR_CORE_EXPORT EventCursor : public MZeroedObject
friend class EventIterator;
protected:
- DBEVENTINFO &dbei;
MCONTACT hContact;
public:
- EventCursor(MCONTACT _1, DBEVENTINFO &_2) :
- hContact(_1),
- dbei(_2)
+ EventCursor(MCONTACT _1) :
+ hContact(_1)
{ }
virtual ~EventCursor();
@@ -752,8 +750,8 @@ public:
}
};
-MIR_CORE_DLL(EventCursor*) Events(MCONTACT, DBEVENTINFO &);
-MIR_CORE_DLL(EventCursor*) EventsRev(MCONTACT, DBEVENTINFO &);
+MIR_CORE_DLL(EventCursor*) Events(MCONTACT, MEVENT iStartEvent = 0);
+MIR_CORE_DLL(EventCursor*) EventsRev(MCONTACT, MEVENT iStartEvent = 0);
};