diff options
Diffstat (limited to 'indra/newview/lleventnotifier.h')
-rw-r--r-- | indra/newview/lleventnotifier.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/lleventnotifier.h b/indra/newview/lleventnotifier.h index 1801efeabf..bbd1facf31 100644 --- a/indra/newview/lleventnotifier.h +++ b/indra/newview/lleventnotifier.h @@ -75,14 +75,14 @@ public: //void setEventName(std::string &event_name); U32 getEventID() const { return mEventID; } const std::string &getEventName() const { return mEventName; } - U32 getEventDate() const { return mEventDate; } + time_t getEventDate() const { return mEventDate; } const std::string &getEventDateStr() const { return mEventDateStr; } LLVector3d getEventPosGlobal() const { return mEventPosGlobal; } protected: U32 mEventID; // EventID for this event std::string mEventName; std::string mEventDateStr; - U32 mEventDate; + time_t mEventDate; LLVector3d mEventPosGlobal; }; |