diff options
author | Jacek Antonelli | 2008-08-15 23:44:50 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:44:50 -0500 |
commit | 89fe5dab825a62a0e3fd8d248cbc91c65eb2a426 (patch) | |
tree | bcff14b7888d04a2fec799c59369f6095224bd08 /linden/indra/newview/llfloaterabout.cpp | |
parent | Second Life viewer sources 1.13.3.2 (diff) | |
download | meta-impy-89fe5dab825a62a0e3fd8d248cbc91c65eb2a426.zip meta-impy-89fe5dab825a62a0e3fd8d248cbc91c65eb2a426.tar.gz meta-impy-89fe5dab825a62a0e3fd8d248cbc91c65eb2a426.tar.bz2 meta-impy-89fe5dab825a62a0e3fd8d248cbc91c65eb2a426.tar.xz |
Second Life viewer sources 1.14.0.0
Diffstat (limited to 'linden/indra/newview/llfloaterabout.cpp')
-rw-r--r-- | linden/indra/newview/llfloaterabout.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/linden/indra/newview/llfloaterabout.cpp b/linden/indra/newview/llfloaterabout.cpp index 54168dc..cbac9f3 100644 --- a/linden/indra/newview/llfloaterabout.cpp +++ b/linden/indra/newview/llfloaterabout.cpp | |||
@@ -45,7 +45,10 @@ | |||
45 | #include "llvieweruictrlfactory.h" | 45 | #include "llvieweruictrlfactory.h" |
46 | #include "viewer.h" // for gViewerDigest | 46 | #include "viewer.h" // for gViewerDigest |
47 | 47 | ||
48 | #if LL_LIBXUL_ENABLED | ||
48 | #include "llmozlib.h" | 49 | #include "llmozlib.h" |
50 | #endif // LL_LIBXUL_ENABLED | ||
51 | |||
49 | #include "llglheaders.h" | 52 | #include "llglheaders.h" |
50 | 53 | ||
51 | extern LLCPUInfo gSysCPU; | 54 | extern LLCPUInfo gSysCPU; |
@@ -98,7 +101,7 @@ LLFloaterAbout::LLFloaterAbout() | |||
98 | gAgent.getRegion()->getName().c_str()); | 101 | gAgent.getRegion()->getName().c_str()); |
99 | support.append(region_text); | 102 | support.append(region_text); |
100 | 103 | ||
101 | char buffer[MAX_STRING]; | 104 | char buffer[MAX_STRING]; /*Flawfinder: ignore*/ |
102 | gAgent.getRegion()->getHost().getHostName(buffer, MAX_STRING); | 105 | gAgent.getRegion()->getHost().getHostName(buffer, MAX_STRING); |
103 | support.append(buffer); | 106 | support.append(buffer); |
104 | support.append(" ("); | 107 | support.append(" ("); |
@@ -154,7 +157,7 @@ LLFloaterAbout::LLFloaterAbout() | |||
154 | 157 | ||
155 | // MD5 digest of executable | 158 | // MD5 digest of executable |
156 | support.append("Viewer Digest: "); | 159 | support.append("Viewer Digest: "); |
157 | char viewer_digest_string[UUID_STR_LENGTH]; | 160 | char viewer_digest_string[UUID_STR_LENGTH]; /*Flawfinder: ignore*/ |
158 | gViewerDigest.toString( viewer_digest_string ); | 161 | gViewerDigest.toString( viewer_digest_string ); |
159 | support.append(viewer_digest_string); | 162 | support.append(viewer_digest_string); |
160 | 163 | ||
@@ -182,5 +185,5 @@ void LLFloaterAbout::show(void*) | |||
182 | sInstance = new LLFloaterAbout(); | 185 | sInstance = new LLFloaterAbout(); |
183 | } | 186 | } |
184 | 187 | ||
185 | sInstance->open(); | 188 | sInstance->open(); /*Flawfinder: ignore*/ |
186 | } | 189 | } |