diff options
| author | Oz Linden <oz@lindenlab.com> | 2011-08-03 15:46:16 -0400 | 
|---|---|---|
| committer | Oz Linden <oz@lindenlab.com> | 2011-08-03 15:46:16 -0400 | 
| commit | fc0d74a1fe639a679025bb18a1d18a08fd87b3bc (patch) | |
| tree | 4ea58bb244f8bca94681cf4a08982f0da6950af0 /indra/newview | |
| parent | f72f2f2bf6589ddecb3a28710deccaedf67c69fb (diff) | |
storm-1534: code to allow external source of current Linden names
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/llfloaterabout.cpp | 21 | 
1 files changed, 21 insertions, 0 deletions
| diff --git a/indra/newview/llfloaterabout.cpp b/indra/newview/llfloaterabout.cpp index cf52ee71ea..849826bb6b 100644 --- a/indra/newview/llfloaterabout.cpp +++ b/indra/newview/llfloaterabout.cpp @@ -110,6 +110,9 @@ BOOL LLFloaterAbout::postBuild()  	LLViewerTextEditor *support_widget =   		getChild<LLViewerTextEditor>("support_editor", true); +	LLViewerTextEditor *linden_names_widget =  +		getChild<LLViewerTextEditor>("linden_names", true); +  	LLViewerTextEditor *contrib_names_widget =   		getChild<LLViewerTextEditor>("contrib_names", true); @@ -195,6 +198,24 @@ BOOL LLFloaterAbout::postBuild()  	support_widget->setEnabled(FALSE);  	support_widget->startOfDoc(); +	// Get the names of Lindens, added by viewer_manifest.py at build time +	std::string lindens_path = gDirUtilp->getExpandedFilename(LL_PATH_APP_SETTINGS,"lindens.txt"); +	llifstream linden_file; +	std::string lindens; +	linden_file.open(lindens_path);		/* Flawfinder: ignore */ +	if (linden_file.is_open()) +	{ +		std::getline(linden_file, lindens); // all names are on a single line +		linden_file.close(); +		linden_names_widget->setText(lindens); +	} +	else +	{ +		LL_INFOS("AboutInit") << "Could not read lindens file at " << lindens_path << LL_ENDL; +	} +	linden_names_widget->setEnabled(FALSE); +	linden_names_widget->startOfDoc(); +  	// Get the names of contributors, extracted from .../doc/contributions.txt by viewer_manifest.py at build time  	std::string contributors_path = gDirUtilp->getExpandedFilename(LL_PATH_APP_SETTINGS,"contributors.txt");  	llifstream contrib_file; | 
