diff options
| author | prep <prep@lindenlab.com> | 2012-11-28 16:36:34 -0500 | 
|---|---|---|
| committer | prep <prep@lindenlab.com> | 2012-11-28 16:36:34 -0500 | 
| commit | e0432f98ee515f9777604aa784d28b63d2abfe40 (patch) | |
| tree | 398fcae43d9904bde2112a7085c7ef7c1a926100 /indra/integration_tests | |
| parent | bf87920fc91e2ca2b8d9f6f2656ad632c3005164 (diff) | |
| parent | f5a47417fde70f78b99744386c6da0bcf78e60d5 (diff) | |
SH-3563. Pull and merge from viewer-development. Modest code changes to fix alignment issue in llAppearance.
Diffstat (limited to 'indra/integration_tests')
| -rw-r--r-- | indra/integration_tests/llimage_libtest/llimage_libtest.cpp | 2 | ||||
| -rw-r--r-- | indra/integration_tests/llui_libtest/llui_libtest.cpp | 29 | 
2 files changed, 15 insertions, 16 deletions
| diff --git a/indra/integration_tests/llimage_libtest/llimage_libtest.cpp b/indra/integration_tests/llimage_libtest/llimage_libtest.cpp index 36c5b67826..034c816742 100644 --- a/indra/integration_tests/llimage_libtest/llimage_libtest.cpp +++ b/indra/integration_tests/llimage_libtest/llimage_libtest.cpp @@ -240,7 +240,7 @@ void store_input_file(std::list<std::string> &input_filenames, const std::string  		LLDirIterator iter(dir, name);  		while (iter.next(next_name))  		{ -			std::string file_name = dir + gDirUtilp->getDirDelimiter() + next_name; +			std::string file_name = gDirUtilp->add(dir, next_name);  			input_filenames.push_back(file_name);  		}  	} diff --git a/indra/integration_tests/llui_libtest/llui_libtest.cpp b/indra/integration_tests/llui_libtest/llui_libtest.cpp index 217e26c3ca..38aa1bbeb2 100644 --- a/indra/integration_tests/llui_libtest/llui_libtest.cpp +++ b/indra/integration_tests/llui_libtest/llui_libtest.cpp @@ -107,12 +107,6 @@ public:  };  TestImageProvider gTestImageProvider; -static std::string get_xui_dir() -{ -	std::string delim = gDirUtilp->getDirDelimiter(); -	return gDirUtilp->getSkinBaseDir() + delim + "default" + delim + "xui" + delim; -} -  void init_llui()  {  	// Font lookup needs directory support @@ -122,13 +116,12 @@ void init_llui()  	const char* newview_path = "../../../newview";  #endif  	gDirUtilp->initAppDirs("SecondLife", newview_path); -	gDirUtilp->setSkinFolder("default"); +	gDirUtilp->setSkinFolder("default", "en");  	// colors are no longer stored in a LLControlGroup file  	LLUIColorTable::instance().loadFromSettings(); -	std::string config_filename = gDirUtilp->getExpandedFilename( -																 LL_PATH_APP_SETTINGS, "settings.xml"); +	std::string config_filename = gDirUtilp->getExpandedFilename(LL_PATH_APP_SETTINGS, "settings.xml");  	gSavedSettings.loadFromFile(config_filename);  	// See LLAppViewer::init() @@ -143,9 +136,7 @@ void init_llui()  	const bool no_register_widgets = false;  	LLWidgetReg::initClass( no_register_widgets ); -	 -	// Unclear if this is needed -	LLUI::setupPaths(); +  	// Otherwise we get translation warnings when setting up floaters  	// (tooltips for buttons)  	std::set<std::string> default_args; @@ -157,7 +148,6 @@ void init_llui()  	// otherwise it crashes.  	LLFontGL::initClass(96.f, 1.f, 1.f,  						gDirUtilp->getAppRODataDir(), -						LLUI::getXUIPaths(),  						false );	// don't create gl textures  	LLFloaterView::Params fvparams; @@ -169,6 +159,14 @@ void init_llui()  	gFloaterView = LLUICtrlFactory::create<LLFloaterView> (fvparams);  } +/*==========================================================================*| +static std::string get_xui_dir() +{ +	std::string delim = gDirUtilp->getDirDelimiter(); +	return gDirUtilp->getSkinBaseDir() + delim + "default" + delim + "xui" + delim; +} + +// buildFromFile() no longer supports generate-output-LLXMLNode  void export_test_floaters()  {  	// Convert all test floaters to new XML format @@ -191,7 +189,7 @@ void export_test_floaters()  		floater->buildFromFile(	filename,  								//	 FALSE,	// don't open floater  								output_node); -		std::string out_filename = xui_dir + filename; +		std::string out_filename = gDirUtilp->add(xui_dir, filename);  		std::string::size_type extension_pos = out_filename.rfind(".xml");  		out_filename.resize(extension_pos);  		out_filename += "_new.xml"; @@ -203,6 +201,7 @@ void export_test_floaters()  		fclose(floater_file);  	}  } +|*==========================================================================*/  int main(int argc, char** argv)  { @@ -211,7 +210,7 @@ int main(int argc, char** argv)  	init_llui(); -	export_test_floaters(); +//	export_test_floaters();  	return 0;  } | 
