aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/lleventnotifier.h
diff options
context:
space:
mode:
authorJacek Antonelli2008-09-06 18:24:57 -0500
committerJacek Antonelli2008-09-06 18:25:07 -0500
commit798d367d54a6c6379ad355bd8345fa40e31e7fe9 (patch)
tree1921f1708cd0240648c97bc02df2c2ab5f2fc41e /linden/indra/newview/lleventnotifier.h
parentSecond Life viewer sources 1.20.15 (diff)
downloadmeta-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.h4
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; }
81protected: 81protected:
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