diff options
Diffstat (limited to 'indra/newview/tests')
| -rwxr-xr-x | indra/newview/tests/llagentaccess_test.cpp | 12 | ||||
| -rwxr-xr-x | indra/newview/tests/lllogininstance_test.cpp | 18 | ||||
| -rwxr-xr-x | indra/newview/tests/llsecapi_test.cpp | 2 | ||||
| -rwxr-xr-x | indra/newview/tests/llsechandler_basic_test.cpp | 2 | ||||
| -rwxr-xr-x | indra/newview/tests/llslurl_test.cpp | 2 | ||||
| -rwxr-xr-x | indra/newview/tests/llviewerhelputil_test.cpp | 2 | ||||
| -rwxr-xr-x | indra/newview/tests/llviewernetwork_test.cpp | 2 | ||||
| -rwxr-xr-x | indra/newview/tests/llxmlrpclistener_test.cpp | 4 | 
8 files changed, 22 insertions, 22 deletions
| diff --git a/indra/newview/tests/llagentaccess_test.cpp b/indra/newview/tests/llagentaccess_test.cpp index 1f379ead32..a40b5c9a3d 100755 --- a/indra/newview/tests/llagentaccess_test.cpp +++ b/indra/newview/tests/llagentaccess_test.cpp @@ -49,7 +49,7 @@ LLControlGroup::~LLControlGroup()  }  // Implementation of just the LLControlGroup methods we requre -LLControlVariable* LLControlGroup::declareU32(const std::string& name, U32 initial_val, const std::string& comment, BOOL persist) +LLControlVariable* LLControlGroup::declareU32(const std::string& name, U32 initial_val, const std::string& comment, LLControlVariable::ePersist persist)  {  	test_preferred_maturity = initial_val;  	return NULL; @@ -80,7 +80,7 @@ namespace tut  	void agentaccess_object_t::test<1>()  	{  		LLControlGroup cgr("test"); -		cgr.declareU32("PreferredMaturity", SIM_ACCESS_PG, "declared_for_test", FALSE); +		cgr.declareU32("PreferredMaturity", SIM_ACCESS_PG, "declared_for_test", LLControlVariable::PERSIST_NO);  		LLAgentAccess aa(cgr);  		cgr.setU32("PreferredMaturity", SIM_ACCESS_PG); @@ -109,7 +109,7 @@ namespace tut  	void agentaccess_object_t::test<2>()  	{  		LLControlGroup cgr("test"); -		cgr.declareU32("PreferredMaturity", SIM_ACCESS_PG, "declared_for_test", FALSE); +		cgr.declareU32("PreferredMaturity", SIM_ACCESS_PG, "declared_for_test", LLControlVariable::PERSIST_NO);  		LLAgentAccess aa(cgr);  		// make sure default is PG @@ -157,7 +157,7 @@ namespace tut  	void agentaccess_object_t::test<3>()  	{  		LLControlGroup cgr("test"); -		cgr.declareU32("PreferredMaturity", SIM_ACCESS_PG, "declared_for_test", FALSE); +		cgr.declareU32("PreferredMaturity", SIM_ACCESS_PG, "declared_for_test", LLControlVariable::PERSIST_NO);  		LLAgentAccess aa(cgr);  #ifndef HACKED_GODLIKE_VIEWER @@ -195,7 +195,7 @@ namespace tut  	void agentaccess_object_t::test<4>()  	{  		LLControlGroup cgr("test"); -		cgr.declareU32("PreferredMaturity", SIM_ACCESS_PG, "declared_for_test", FALSE); +		cgr.declareU32("PreferredMaturity", SIM_ACCESS_PG, "declared_for_test", LLControlVariable::PERSIST_NO);  		LLAgentAccess aa(cgr);  #ifndef HACKED_GODLIKE_VIEWER @@ -272,7 +272,7 @@ namespace tut  	void agentaccess_object_t::test<5>()  	{  		LLControlGroup cgr("test"); -		cgr.declareU32("PreferredMaturity", SIM_ACCESS_PG, "declared_for_test", FALSE); +		cgr.declareU32("PreferredMaturity", SIM_ACCESS_PG, "declared_for_test", LLControlVariable::PERSIST_NO);  		LLAgentAccess aa(cgr);  		cgr.setU32("PreferredMaturity", SIM_ACCESS_ADULT); diff --git a/indra/newview/tests/lllogininstance_test.cpp b/indra/newview/tests/lllogininstance_test.cpp index 4768d9351e..272a46aa8d 100755 --- a/indra/newview/tests/lllogininstance_test.cpp +++ b/indra/newview/tests/lllogininstance_test.cpp @@ -175,8 +175,8 @@ F32 LLControlGroup::getF32(const std::string& name) { return 0.0f; }  U32 LLControlGroup::saveToFile(const std::string& filename, BOOL nondefault_only) { return 1; }  void LLControlGroup::setString(const std::string& name, const std::string& val) {}  std::string LLControlGroup::getString(const std::string& name) { return "test_string"; } -LLControlVariable* LLControlGroup::declareBOOL(const std::string& name, BOOL initial_val, const std::string& comment, BOOL persist) { return NULL; } -LLControlVariable* LLControlGroup::declareString(const std::string& name, const std::string &initial_val, const std::string& comment, BOOL persist) { return NULL; } +LLControlVariable* LLControlGroup::declareBOOL(const std::string& name, BOOL initial_val, const std::string& comment, LLControlVariable::ePersist persist) { return NULL; } +LLControlVariable* LLControlGroup::declareString(const std::string& name, const std::string &initial_val, const std::string& comment, LLControlVariable::ePersist persist) { return NULL; }  #include "lluicolortable.h"  void LLUIColorTable::saveUserSettings(void)const {} @@ -344,13 +344,13 @@ namespace tut  			gTOSReplyPump = 0; // clear the callback. -			gSavedSettings.declareBOOL("NoInventoryLibrary", FALSE, "", FALSE); -			gSavedSettings.declareBOOL("ConnectAsGod", FALSE, "", FALSE); -			gSavedSettings.declareBOOL("UseDebugMenus", FALSE, "", FALSE); -			gSavedSettings.declareBOOL("ForceMandatoryUpdate", FALSE, "", FALSE); -			gSavedSettings.declareString("ClientSettingsFile", "test_settings.xml", "", FALSE); -			gSavedSettings.declareString("NextLoginLocation", "", "", FALSE); -			gSavedSettings.declareBOOL("LoginLastLocation", FALSE, "", FALSE); +			gSavedSettings.declareBOOL("NoInventoryLibrary", FALSE, "", LLControlVariable::PERSIST_NO); +			gSavedSettings.declareBOOL("ConnectAsGod", FALSE, "", LLControlVariable::PERSIST_NO); +			gSavedSettings.declareBOOL("UseDebugMenus", FALSE, "", LLControlVariable::PERSIST_NO); +			gSavedSettings.declareBOOL("ForceMandatoryUpdate", FALSE, "", LLControlVariable::PERSIST_NO); +			gSavedSettings.declareString("ClientSettingsFile", "test_settings.xml", "", LLControlVariable::PERSIST_NO); +			gSavedSettings.declareString("NextLoginLocation", "", "", LLControlVariable::PERSIST_NO); +			gSavedSettings.declareBOOL("LoginLastLocation", FALSE, "", LLControlVariable::PERSIST_NO);  			LLSD authenticator = LLSD::emptyMap();  			LLSD identifier = LLSD::emptyMap(); diff --git a/indra/newview/tests/llsecapi_test.cpp b/indra/newview/tests/llsecapi_test.cpp index 05bac0e23b..d7e87ed52e 100755 --- a/indra/newview/tests/llsecapi_test.cpp +++ b/indra/newview/tests/llsecapi_test.cpp @@ -42,7 +42,7 @@ LLControlGroup::~LLControlGroup() {}  LLControlVariable* LLControlGroup::declareString(const std::string& name,                                     const std::string& initial_val,                                     const std::string& comment, -                                   BOOL persist) {return NULL;} +                                   LLControlVariable::ePersist persist) {return NULL;}  void LLControlGroup::setString(const std::string& name, const std::string& val){}  std::string LLControlGroup::getString(const std::string& name)  { diff --git a/indra/newview/tests/llsechandler_basic_test.cpp b/indra/newview/tests/llsechandler_basic_test.cpp index 3fbb45f8b4..2a8dc15346 100755 --- a/indra/newview/tests/llsechandler_basic_test.cpp +++ b/indra/newview/tests/llsechandler_basic_test.cpp @@ -74,7 +74,7 @@ LLControlGroup::~LLControlGroup() {}  LLControlVariable* LLControlGroup::declareString(const std::string& name,                                     const std::string& initial_val,                                     const std::string& comment, -                                   BOOL persist) {return NULL;} +                                   LLControlVariable::ePersist persist) {return NULL;}  void LLControlGroup::setString(const std::string& name, const std::string& val){}  std::string LLControlGroup::getString(const std::string& name)  { diff --git a/indra/newview/tests/llslurl_test.cpp b/indra/newview/tests/llslurl_test.cpp index a3735388df..86229ad636 100755 --- a/indra/newview/tests/llslurl_test.cpp +++ b/indra/newview/tests/llslurl_test.cpp @@ -40,7 +40,7 @@ LLControlGroup::~LLControlGroup() {}  LLControlVariable* LLControlGroup::declareString(const std::string& name,                                     const std::string& initial_val,                                     const std::string& comment, -                                   BOOL persist) {return NULL;} +                                   LLControlVariable::ePersist persist) {return NULL;}  void LLControlGroup::setString(const std::string& name, const std::string& val){}  std::string gCmdLineLoginURI; diff --git a/indra/newview/tests/llviewerhelputil_test.cpp b/indra/newview/tests/llviewerhelputil_test.cpp index 8e9cc7111b..f6456a2839 100755 --- a/indra/newview/tests/llviewerhelputil_test.cpp +++ b/indra/newview/tests/llviewerhelputil_test.cpp @@ -52,7 +52,7 @@ LLControlGroup::~LLControlGroup() {}  LLControlVariable* LLControlGroup::declareString(const std::string& name,  				   const std::string& initial_val,  				   const std::string& comment, -				   BOOL persist) {return NULL;} +				   LLControlVariable::ePersist persist) {return NULL;}  void LLControlGroup::setString(const std::string& name, const std::string& val){}  std::string LLControlGroup::getString(const std::string& name)  { diff --git a/indra/newview/tests/llviewernetwork_test.cpp b/indra/newview/tests/llviewernetwork_test.cpp index f80c02475d..06de1cbfa2 100755 --- a/indra/newview/tests/llviewernetwork_test.cpp +++ b/indra/newview/tests/llviewernetwork_test.cpp @@ -40,7 +40,7 @@ LLControlGroup::~LLControlGroup() {}  LLControlVariable* LLControlGroup::declareString(const std::string& name,                                     const std::string& initial_val,                                     const std::string& comment, -                                   BOOL persist) {return NULL;} +                                   LLControlVariable::ePersist persist) {return NULL;}  void LLControlGroup::setString(const std::string& name, const std::string& val){}  std::string gCmdLineLoginURI; diff --git a/indra/newview/tests/llxmlrpclistener_test.cpp b/indra/newview/tests/llxmlrpclistener_test.cpp index 711c2a3d51..20f913b670 100755 --- a/indra/newview/tests/llxmlrpclistener_test.cpp +++ b/indra/newview/tests/llxmlrpclistener_test.cpp @@ -62,8 +62,8 @@ namespace tut              // These variables are required by machinery used by              // LLXMLRPCTransaction. The values reflect reality for this test              // executable; hopefully these values are correct. -            gSavedSettings.declareBOOL("BrowserProxyEnabled", FALSE, "", FALSE); // don't persist -            gSavedSettings.declareBOOL("NoVerifySSLCert", TRUE, "", FALSE); // don't persist +            gSavedSettings.declareBOOL("BrowserProxyEnabled", FALSE, "", LLControlVariable::PERSIST_NO); // don't persist +            gSavedSettings.declareBOOL("NoVerifySSLCert", TRUE, "", LLControlVariable::PERSIST_NO); // don't persist          }          // LLEventPump listener signature | 
