diff options
author | Jacek Antonelli | 2008-09-06 18:24:57 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-09-06 18:25:07 -0500 |
commit | 798d367d54a6c6379ad355bd8345fa40e31e7fe9 (patch) | |
tree | 1921f1708cd0240648c97bc02df2c2ab5f2fc41e /linden/indra/newview/lleventnotifier.h | |
parent | Second Life viewer sources 1.20.15 (diff) | |
download | meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.zip meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.gz meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.bz2 meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.xz |
Second Life viewer sources 1.21.0-RC
Diffstat (limited to 'linden/indra/newview/lleventnotifier.h')
-rw-r--r-- | linden/indra/newview/lleventnotifier.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/newview/lleventnotifier.h b/linden/indra/newview/lleventnotifier.h index 773779c..f9b7309 100644 --- a/linden/indra/newview/lleventnotifier.h +++ b/linden/indra/newview/lleventnotifier.h | |||
@@ -75,14 +75,14 @@ public: | |||
75 | //void setEventName(std::string &event_name); | 75 | //void setEventName(std::string &event_name); |
76 | U32 getEventID() const { return mEventID; } | 76 | U32 getEventID() const { return mEventID; } |
77 | const std::string &getEventName() const { return mEventName; } | 77 | const std::string &getEventName() const { return mEventName; } |
78 | U32 getEventDate() const { return mEventDate; } | 78 | time_t getEventDate() const { return mEventDate; } |
79 | const std::string &getEventDateStr() const { return mEventDateStr; } | 79 | const std::string &getEventDateStr() const { return mEventDateStr; } |
80 | LLVector3d getEventPosGlobal() const { return mEventPosGlobal; } | 80 | LLVector3d getEventPosGlobal() const { return mEventPosGlobal; } |
81 | protected: | 81 | protected: |
82 | U32 mEventID; // EventID for this event | 82 | U32 mEventID; // EventID for this event |
83 | std::string mEventName; | 83 | std::string mEventName; |
84 | std::string mEventDateStr; | 84 | std::string mEventDateStr; |
85 | U32 mEventDate; | 85 | time_t mEventDate; |
86 | LLVector3d mEventPosGlobal; | 86 | LLVector3d mEventPosGlobal; |
87 | }; | 87 | }; |
88 | 88 | ||