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/llfloaterreporter.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/llfloaterreporter.h')
-rw-r--r-- | linden/indra/newview/llfloaterreporter.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/linden/indra/newview/llfloaterreporter.h b/linden/indra/newview/llfloaterreporter.h index 5e8f735..921f9a1 100644 --- a/linden/indra/newview/llfloaterreporter.h +++ b/linden/indra/newview/llfloaterreporter.h | |||
@@ -100,8 +100,8 @@ public: | |||
100 | static void onClickSelectAbuser (void *userdata); | 100 | static void onClickSelectAbuser (void *userdata); |
101 | static void closePickTool (void *userdata); | 101 | static void closePickTool (void *userdata); |
102 | static void uploadDoneCallback(const LLUUID &uuid, void* user_data, S32 result, LLExtStat ext_status); | 102 | static void uploadDoneCallback(const LLUUID &uuid, void* user_data, S32 result, LLExtStat ext_status); |
103 | static void addDescription(const LLString& description, LLMeanCollisionData *mcd = NULL); | 103 | static void addDescription(const std::string& description, LLMeanCollisionData *mcd = NULL); |
104 | static void setDescription(const LLString& description, LLMeanCollisionData *mcd = NULL); | 104 | static void setDescription(const std::string& description, LLMeanCollisionData *mcd = NULL); |
105 | 105 | ||
106 | // returns a pointer to reporter of report_type | 106 | // returns a pointer to reporter of report_type |
107 | static LLFloaterReporter* getReporter(EReportType report_type); | 107 | static LLFloaterReporter* getReporter(EReportType report_type); |
@@ -111,7 +111,7 @@ public: | |||
111 | // static | 111 | // static |
112 | static void processRegionInfo(LLMessageSystem* msg); | 112 | static void processRegionInfo(LLMessageSystem* msg); |
113 | 113 | ||
114 | void setPickedObjectProperties(const LLString& object_name, const LLString& owner_name, const LLUUID owner_id); | 114 | void setPickedObjectProperties(const std::string& object_name, const std::string& owner_name, const LLUUID owner_id); |
115 | 115 | ||
116 | private: | 116 | private: |
117 | void takeScreenshot(); | 117 | void takeScreenshot(); |
@@ -137,7 +137,7 @@ private: | |||
137 | LLVector3 mPosition; | 137 | LLVector3 mPosition; |
138 | BOOL mCopyrightWarningSeen; | 138 | BOOL mCopyrightWarningSeen; |
139 | std::list<LLMeanCollisionData*> mMCDList; | 139 | std::list<LLMeanCollisionData*> mMCDList; |
140 | LLString mDefaultSummary; | 140 | std::string mDefaultSummary; |
141 | LLResourceData* mResourceDatap; | 141 | LLResourceData* mResourceDatap; |
142 | }; | 142 | }; |
143 | 143 | ||