diff options
author | Richard Linden <none@none> | 2013-11-11 18:41:25 -0800 |
---|---|---|
committer | Richard Linden <none@none> | 2013-11-11 18:41:25 -0800 |
commit | 89d5d01c412a8e0a3b4f2f2c9a504f0e3f609349 (patch) | |
tree | bb7caffd00d52238ce0602235a3573be989f62c8 /indra/newview/llappviewer.h | |
parent | a8e74f20bac8c1cb708e645e460d9435a2fff1db (diff) |
MAINT-3432 FIX Help -> Report Bug should open jira with pre-populated fields
moved viewer information strings into LLAppViewer
replaced Help>Report a Bug with direct use of Jira link
Diffstat (limited to 'indra/newview/llappviewer.h')
-rwxr-xr-x | indra/newview/llappviewer.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/llappviewer.h b/indra/newview/llappviewer.h index 3ae8a78845..05326c2baf 100755 --- a/indra/newview/llappviewer.h +++ b/indra/newview/llappviewer.h @@ -86,6 +86,10 @@ public: const LLOSInfo& getOSInfo() const { return mSysOSInfo; } + void setServerReleaseNotesURL(const std::string& url) { mServerReleaseNotesURL = url; } + LLSD getViewerInfo() const; + std::string getViewerInfoString() const; + // Report true if under the control of a debugger. A null-op default. virtual bool beingDebugged() { return false; } @@ -246,6 +250,8 @@ private: LLOSInfo mSysOSInfo; bool mReportedCrash; + std::string mServerReleaseNotesURL; + // Thread objects. static LLTextureCache* sTextureCache; static LLImageDecodeThread* sImageDecodeThread; |