I knew there was one more thing I had to do here.

This commit is contained in:
Lirusaito
2016-03-28 18:56:32 -04:00
parent 4afc6f5b6a
commit 25937e42fe

View File

@@ -197,10 +197,10 @@ LLFloaterAbout::LLFloaterAbout()
else
support.append(RlvStrings::getString(RLV_STRING_HIDDEN_REGION));
// [/RLVa:KN]
support.append('\n');
support += '\n';
support.append(gLastVersionChannel);
support.append('\n');
support += '\n';
support_widget->appendColoredText(support, FALSE, FALSE, gColors.getColor("TextFgReadOnlyColor"));
@@ -222,7 +222,7 @@ LLFloaterAbout::LLFloaterAbout()
// CPU
support.append("CPU: ");
support.append( gSysCPU.getCPUString() );
support.append('\n');
support += '\n';
/* This is confusing and WRONG.
support.append("SSE Support:");
@@ -241,15 +241,15 @@ LLFloaterAbout::LLFloaterAbout()
support.append("OS Version: ");
support.append( LLAppViewer::instance()->getOSInfo().getOSString() );
support.append('\n');
support += '\n';
support.append("Graphics Card Vendor: ");
support.append( (const char*) glGetString(GL_VENDOR) );
support.append('\n');
support += '\n';
support.append("Graphics Card: ");
support.append( (const char*) glGetString(GL_RENDERER) );
support.append('\n');
support += '\n';
#if LL_WINDOWS
getWindow()->incBusyCount();
@@ -260,7 +260,7 @@ LLFloaterAbout::LLFloaterAbout()
{
support.append(driver_info["DriverVersion"]);
}
support.append('\n');
support += '\n';
getWindow()->decBusyCount();
getWindow()->setCursor(UI_CURSOR_ARROW);
#endif
@@ -268,27 +268,27 @@ LLFloaterAbout::LLFloaterAbout()
support.append("OpenGL Version: ");
support.append( (const char*) glGetString(GL_VERSION) );
// [RLVa:KB] - Checked: 2010-04-18 (RLVa-1.2.0)
support.append('\n');
support += '\n';
support.append("RLV Version: " + (RlvActions::isRlvEnabled() ? RlvStrings::getVersionAbout() : "(disabled)"));
// [/RLVa:KB]
support.append("\n\n");
support.append("libcurl Version: ");
support.append( LLCurl::getVersionString() );
support.append('\n');
support += '\n';
support.append("J2C Decoder Version: ");
support.append( LLImageJ2C::getEngineInfo() );
support.append('\n');
support += '\n';
support.append("Audio Driver Version: ");
bool want_fullname = true;
support.append( gAudiop ? gAudiop->getDriverName(want_fullname) : "(none)" );
support.append('\n');
support += '\n';
support.append("LLCEFLib/CEF Version: ");
support.append(LLCEFLIB_VERSION);
support.append('\n');
support += '\n';
if (gPacketsIn > 0)
{
@@ -297,7 +297,7 @@ LLFloaterAbout::LLFloaterAbout()
F32(gPacketsIn),
100.f*LLViewerStats::getInstance()->mPacketsLostStat.getCurrent() / F32(gPacketsIn) );
support.append(packet_loss);
support.append('\n');
support += '\n';
}
support_widget->appendColoredText(support, FALSE, FALSE, gColors.getColor("TextFgReadOnlyColor"));