diff options
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/llcorehttp/_httpservice.cpp | 2 | ||||
| -rw-r--r-- | indra/llimage/tests/llimageworker_test.cpp | 2 | ||||
| -rw-r--r-- | indra/llinventory/tests/inventorymisc_test.cpp | 4 | ||||
| -rw-r--r-- | indra/llmessage/tests/lltemplatemessagedispatcher_test.cpp | 8 | ||||
| -rw-r--r-- | indra/llmessage/tests/llxfer_file_test.cpp | 2 | ||||
| -rw-r--r-- | indra/llprimitive/tests/llprimitive_test.cpp | 14 | ||||
| -rw-r--r-- | indra/llxml/llcontrol.cpp | 4 | ||||
| -rw-r--r-- | indra/llxml/tests/llcontrol_test.cpp | 6 | ||||
| -rw-r--r-- | indra/newview/tests/lllogininstance_test.cpp | 10 | ||||
| -rw-r--r-- | indra/newview/tests/llsechandler_basic_test.cpp | 2 | ||||
| -rw-r--r-- | indra/newview/tests/llviewerhelputil_test.cpp | 2 | ||||
| -rw-r--r-- | indra/test/llsaleinfo_tut.cpp | 8 | ||||
| -rw-r--r-- | indra/test/lltemplatemessagebuilder_tut.cpp | 2 | ||||
| -rw-r--r-- | indra/test/message_tut.cpp | 2 | 
14 files changed, 34 insertions, 34 deletions
| diff --git a/indra/llcorehttp/_httpservice.cpp b/indra/llcorehttp/_httpservice.cpp index 294acd7f63..88ddf5b995 100644 --- a/indra/llcorehttp/_httpservice.cpp +++ b/indra/llcorehttp/_httpservice.cpp @@ -317,7 +317,7 @@ void HttpService::threadRun(LLCoreInt::HttpThread * thread)          }          catch (std::bad_alloc&)          { -            LLMemory::logMemoryInfo(TRUE); +            LLMemory::logMemoryInfo(true);              //output possible call stacks to log file.              LLError::LLCallStacks::print(); diff --git a/indra/llimage/tests/llimageworker_test.cpp b/indra/llimage/tests/llimageworker_test.cpp index 0a97b739b0..b0212af66e 100644 --- a/indra/llimage/tests/llimageworker_test.cpp +++ b/indra/llimage/tests/llimageworker_test.cpp @@ -150,7 +150,7 @@ namespace tut  		ensure("LLImageDecodeThread: threaded constructor failed", mThread != NULL);  		// Insert something in the queue  		bool done = false; -		LLImageDecodeThread::handle_t decodeHandle = mThread->decodeImage(NULL, 0, FALSE, new responder_test(&done)); +		LLImageDecodeThread::handle_t decodeHandle = mThread->decodeImage(NULL, 0, false, new responder_test(&done));  		// Verifies we get back a valid handle  		ensure("LLImageDecodeThread:  threaded decodeImage(), returned handle is null", decodeHandle != 0);  		// Wait till the thread has time to handle the work order (though it doesn't do much per work order...) diff --git a/indra/llinventory/tests/inventorymisc_test.cpp b/indra/llinventory/tests/inventorymisc_test.cpp index 039fa938dd..0f38dd9104 100644 --- a/indra/llinventory/tests/inventorymisc_test.cpp +++ b/indra/llinventory/tests/inventorymisc_test.cpp @@ -374,7 +374,7 @@ namespace tut  		LLPointer<LLInventoryItem> src1 = create_random_inventory_item();  		std::ostringstream ostream; -		src1->exportLegacyStream(ostream, TRUE); +		src1->exportLegacyStream(ostream, true);  		std::istringstream istream(ostream.str());  		LLPointer<LLInventoryItem> src2 = new LLInventoryItem(); @@ -496,7 +496,7 @@ namespace tut  		LLPointer<LLInventoryCategory> src1 = create_random_inventory_cat();  		std::ostringstream ostream; -		src1->exportLegacyStream(ostream, TRUE); +		src1->exportLegacyStream(ostream, true);  		std::istringstream istream(ostream.str());  		LLPointer<LLInventoryCategory> src2 = new LLInventoryCategory(); diff --git a/indra/llmessage/tests/lltemplatemessagedispatcher_test.cpp b/indra/llmessage/tests/lltemplatemessagedispatcher_test.cpp index fd4f10f39a..3f87a4aff6 100644 --- a/indra/llmessage/tests/lltemplatemessagedispatcher_test.cpp +++ b/indra/llmessage/tests/lltemplatemessagedispatcher_test.cpp @@ -84,7 +84,7 @@ namespace tut  				mMessageName = "MessageName";  				gUdpDispatchWasCalled = false;  				gClearRecvWasCalled = false; -				gValidateMessage = FALSE; +				gValidateMessage = false;  				mMessage["body"]["binary-template-data"] = std::vector<U8>();  			} @@ -121,7 +121,7 @@ namespace tut  	{  		LLTemplateMessageReader* pReader = NULL;  		LLTemplateMessageDispatcher t(*pReader); -		gValidateMessage = TRUE; +		gValidateMessage = true;  		std::vector<U8> vector_data;  		fillVector(vector_data, gBinaryTemplateData);		  		mMessage["body"]["binary-template-data"] = vector_data; @@ -138,7 +138,7 @@ namespace tut  		std::vector<U8> vector_data;  		fillVector(vector_data, gBinaryTemplateData);  		mMessage["body"]["binary-template-data"] = vector_data; -		gValidateMessage = FALSE; +		gValidateMessage = false;  		t.dispatch(mMessageName, mMessage, mResponsePtr);  		ensure("clear received message was called", gClearRecvWasCalled);  	} @@ -149,7 +149,7 @@ namespace tut  	{  		LLTemplateMessageReader* pReader = NULL;  		LLTemplateMessageDispatcher t(*pReader); -		gValidateMessage = TRUE; +		gValidateMessage = true;  		std::vector<U8> vector_data;  		fillVector(vector_data, gBinaryTemplateData);  		mMessage["body"]["binary-template-data"] = vector_data; diff --git a/indra/llmessage/tests/llxfer_file_test.cpp b/indra/llmessage/tests/llxfer_file_test.cpp index a8c1adf9b4..cf95d2627c 100644 --- a/indra/llmessage/tests/llxfer_file_test.cpp +++ b/indra/llmessage/tests/llxfer_file_test.cpp @@ -51,7 +51,7 @@ namespace tut  			oversized_filename += 'X';  		} -		LLXfer_File xff(oversized_filename, FALSE, 1); +		LLXfer_File xff(oversized_filename, false, 1);  		ensure("oversized local_filename nul-terminated",  		       xff.getFileName().length() < LL_MAX_PATH);  	} diff --git a/indra/llprimitive/tests/llprimitive_test.cpp b/indra/llprimitive/tests/llprimitive_test.cpp index 0ff0795fdc..284edc5901 100644 --- a/indra/llprimitive/tests/llprimitive_test.cpp +++ b/indra/llprimitive/tests/llprimitive_test.cpp @@ -46,7 +46,7 @@ public:  		if (mVolumeTest.isNull() || volume_params != mCurrParamsTest || detail != mCurrDetailTest)  		{  			F32 volume_detail = LLVolumeLODGroup::getVolumeScaleFromDetail(detail); -			mVolumeTest = new LLVolume(volume_params, volume_detail, FALSE, FALSE); +			mVolumeTest = new LLVolume(volume_params, volume_detail, false, false);  			mCurrParamsTest = volume_params;  			mCurrDetailTest = detail;  			return mVolumeTest; @@ -193,7 +193,7 @@ namespace tut  		ensure(!primitive.isChanged(LLXform::GEOMETRY));  		// Make sure setVolume returns true -		ensure(primitive.setVolume(params, 0, true) == TRUE); +		ensure(primitive.setVolume(params, 0, true) == true);  		LLVolume* new_volume = primitive.getVolume();  		// make sure new volume was actually created @@ -210,12 +210,12 @@ namespace tut  		ensure(primitive.isChanged(LLXform::GEOMETRY));  		// Run it twice to make sure it doesn't create a different one if params are the same -		ensure(primitive.setVolume(params, 0, true) == FALSE); +		ensure(primitive.setVolume(params, 0, true) == false);  		ensure(new_volume == primitive.getVolume());  		// Change the param definition and try setting it again.  		params.setRevolutions(4); -		ensure(primitive.setVolume(params, 0, true) == TRUE); +		ensure(primitive.setVolume(params, 0, true) == true);  		// Ensure that we now have a different volume  		ensure(new_volume != primitive.getVolume()); @@ -238,7 +238,7 @@ namespace tut  		ensure(!primitive.isChanged(LLXform::GEOMETRY));  		// Make sure setVolume returns true -		ensure(primitive.setVolume(params, 0, false) == TRUE); +		ensure(primitive.setVolume(params, 0, false) == true);  		LLVolume* new_volume = primitive.getVolume(); @@ -256,12 +256,12 @@ namespace tut  		ensure(primitive.isChanged(LLXform::GEOMETRY));  		// Run it twice to make sure it doesn't create a different one if params are the same -		ensure(primitive.setVolume(params, 0, false) == FALSE); +		ensure(primitive.setVolume(params, 0, false) == false);  		ensure(new_volume == primitive.getVolume());  		// Change the param definition and try setting it again.  		params.setRevolutions(4); -		ensure(primitive.setVolume(params, 0, false) == TRUE);  +		ensure(primitive.setVolume(params, 0, false) == true);  		// Ensure that we now have a different volume  		ensure(new_volume != primitive.getVolume()); diff --git a/indra/llxml/llcontrol.cpp b/indra/llxml/llcontrol.cpp index f665621b66..e626bac7d0 100644 --- a/indra/llxml/llcontrol.cpp +++ b/indra/llxml/llcontrol.cpp @@ -1002,7 +1002,7 @@ U32 LLControlGroup::loadFromFile(const std::string& filename, bool set_default_v  	{  		infile.close();  		LL_WARNS("Settings") << "Unable to parse LLSD control file " << filename << ". Trying Legacy Method." << LL_ENDL; -		return loadFromFileLegacy(filename, TRUE, TYPE_STRING); +		return loadFromFileLegacy(filename, true, TYPE_STRING);  	}  	U32	validitems = 0; @@ -1188,7 +1188,7 @@ void main()  	// ...invalid data type  	getfoo = (F32_CONTROL) gGlobals.resolveName("gFoo"); -	getfoo->set(TRUE); +	getfoo->set(true);  	getfoo->dump();  	// ...out of range data diff --git a/indra/llxml/tests/llcontrol_test.cpp b/indra/llxml/tests/llcontrol_test.cpp index f7e43d6def..0c0ef61d23 100644 --- a/indra/llxml/tests/llcontrol_test.cpp +++ b/indra/llxml/tests/llcontrol_test.cpp @@ -112,7 +112,7 @@ namespace tut  		LLControlGroup test_cg("foo2");  		std::string temp_test_file = (mTestConfigDir + "setting_llsd_temp.xml");  		mCleanups.push_back(temp_test_file); -		mCG->saveToFile(temp_test_file.c_str(), TRUE); +		mCG->saveToFile(temp_test_file.c_str(), true);  		results = test_cg.loadFromFile(temp_test_file.c_str());  		ensure("number of changed settings loaded", (results == 1));  		ensure("value of changed settings loaded", (test_cg.getU32("TestSetting") == 13)); @@ -129,12 +129,12 @@ namespace tut  		int results = mCG->loadFromFile(mTestConfigFile.c_str(), true);  		LLControlVariable* control = mCG->getControl("TestSetting");  		LLSD new_value = 13; -		control->setValue(new_value, FALSE); +		control->setValue(new_value, false);  		ensure_equals("value of changed setting", mCG->getU32("TestSetting"), 13);  		LLControlGroup test_cg("foo3");  		std::string temp_test_file = (mTestConfigDir + "setting_llsd_persist_temp.xml");  		mCleanups.push_back(temp_test_file); -		mCG->saveToFile(temp_test_file.c_str(), TRUE); +		mCG->saveToFile(temp_test_file.c_str(), true);  		results = test_cg.loadFromFile(temp_test_file.c_str());  		//If we haven't changed any settings, then we shouldn't have any settings to load  		ensure("number of non-persisted changed settings loaded", (results == 0)); diff --git a/indra/newview/tests/lllogininstance_test.cpp b/indra/newview/tests/lllogininstance_test.cpp index 2afa6a1b2a..70a73b9ca8 100644 --- a/indra/newview/tests/lllogininstance_test.cpp +++ b/indra/newview/tests/lllogininstance_test.cpp @@ -345,13 +345,13 @@ namespace tut  			gTOSReplyPump = 0; // clear the callback. -			gSavedSettings.declareBOOL("NoInventoryLibrary", FALSE, "", LLControlVariable::PERSIST_NO); -			gSavedSettings.declareBOOL("ConnectAsGod", FALSE, "", LLControlVariable::PERSIST_NO); -			gSavedSettings.declareBOOL("UseDebugMenus", FALSE, "", LLControlVariable::PERSIST_NO); +			gSavedSettings.declareBOOL("NoInventoryLibrary", false, "", LLControlVariable::PERSIST_NO); +			gSavedSettings.declareBOOL("ConnectAsGod", false, "", LLControlVariable::PERSIST_NO); +			gSavedSettings.declareBOOL("UseDebugMenus", 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); -            gSavedSettings.declareBOOL("CmdLineSkipUpdater", TRUE, "", LLControlVariable::PERSIST_NO); +			gSavedSettings.declareBOOL("LoginLastLocation", false, "", LLControlVariable::PERSIST_NO); +            gSavedSettings.declareBOOL("CmdLineSkipUpdater", true, "", LLControlVariable::PERSIST_NO);  			LLSD authenticator = LLSD::emptyMap();  			LLSD identifier = LLSD::emptyMap(); diff --git a/indra/newview/tests/llsechandler_basic_test.cpp b/indra/newview/tests/llsechandler_basic_test.cpp index 18b424c95b..c04d8cdc35 100644 --- a/indra/newview/tests/llsechandler_basic_test.cpp +++ b/indra/newview/tests/llsechandler_basic_test.cpp @@ -964,7 +964,7 @@ namespace tut  		// test creation of credentials		  		my_cred = handler->createCredential("mysavedgrid", my_id, my_authenticator);  		// test save without saving authenticator. 		 -		handler->saveCredential(my_cred, FALSE); +		handler->saveCredential(my_cred, false);  		my_new_cred = handler->loadCredential("mysavedgrid");	  		ensure_equals("saved credential without auth",   					  (const std::string)my_new_cred->getIdentifier()["type"], "test_type"); diff --git a/indra/newview/tests/llviewerhelputil_test.cpp b/indra/newview/tests/llviewerhelputil_test.cpp index ddcc4d8f7a..828c0da96c 100644 --- a/indra/newview/tests/llviewerhelputil_test.cpp +++ b/indra/newview/tests/llviewerhelputil_test.cpp @@ -75,7 +75,7 @@ static void substitute_string(std::string &input, const std::string &search, con  #include "../llagent.h"  LLAgent::LLAgent() : mAgentAccess(NULL) { }  LLAgent::~LLAgent() { } -bool LLAgent::isGodlike() const { return FALSE; } +bool LLAgent::isGodlike() const { return false; }  LLAgent gAgent; diff --git a/indra/test/llsaleinfo_tut.cpp b/indra/test/llsaleinfo_tut.cpp index 04af75c2d1..2973824e62 100644 --- a/indra/test/llsaleinfo_tut.cpp +++ b/indra/test/llsaleinfo_tut.cpp @@ -54,7 +54,7 @@ namespace tut  		LLSaleInfo saleinfo1 = ll_sale_info_from_sd(llsd_obj1);  		ensure("1. The getSaleType() fn failed", LLSaleInfo::FS_COPY == llsaleinfo.getSaleType()); -		ensure("2. LLSaleInfo::isForSale() fn failed", TRUE == llsaleinfo.isForSale()); +		ensure("2. LLSaleInfo::isForSale() fn failed", true == llsaleinfo.isForSale());  		ensure("3. The getSalePrice() fn failed", sale_price == llsaleinfo.getSalePrice());  		ensure("4. The getCRC32() fn failed", 235833404 == llsaleinfo.getCRC32());  		ensure("5. LLSaleInfo::lookup(const char* name) fn failed", LLSaleInfo::FS_COPY == llsaleinfo.lookup(sale)); @@ -68,7 +68,7 @@ namespace tut  		saleinfo1 = ll_sale_info_from_sd(llsd_obj1);  		ensure("8. The getSaleType() and setSaleType() fn failed", LLSaleInfo::FS_ORIGINAL == llsaleinfo.getSaleType()); -		ensure("9. LLSaleInfo::isForSale() fn failed", TRUE == llsaleinfo.isForSale()); +		ensure("9. LLSaleInfo::isForSale() fn failed", true == llsaleinfo.isForSale());  		ensure("10. The getSalePrice() fn failed", 10000000 == llsaleinfo.getSalePrice());  		ensure("11. The getCRC32() fn failed", 127911702 == llsaleinfo.getCRC32());  		ensure("12. LLSaleInfo::lookup(const char* name) fn failed", LLSaleInfo::FS_CONTENTS == llsaleinfo.lookup(sale)); @@ -82,7 +82,7 @@ namespace tut  		saleinfo1 = ll_sale_info_from_sd(llsd_obj1);  		ensure("15. The getSaleType() and setSaleType() fn failed", LLSaleInfo::FS_CONTENTS == llsaleinfo.getSaleType()); -		ensure("16. LLSaleInfo::isForSale() fn failed", TRUE == llsaleinfo.isForSale()); +		ensure("16. LLSaleInfo::isForSale() fn failed", true == llsaleinfo.isForSale());  		ensure("17. The getSalePrice() fn failed", 55000550 == llsaleinfo.getSalePrice());  		ensure("18. The getCRC32() fn failed", 408735656 == llsaleinfo.getCRC32());  		ensure("19. LLSaleInfo::lookup(const char* name) fn failed", LLSaleInfo::FS_ORIGINAL == llsaleinfo.lookup(sale)); @@ -96,7 +96,7 @@ namespace tut  		saleinfo1 = ll_sale_info_from_sd(llsd_obj1);  		ensure("22. The getSaleType() and setSaleType() fn failed", LLSaleInfo::FS_NOT == llsaleinfo.getSaleType()); -		ensure("23. LLSaleInfo::isForSale() fn failed", FALSE == llsaleinfo.isForSale()); +		ensure("23. LLSaleInfo::isForSale() fn failed", false == llsaleinfo.isForSale());  		ensure("24. The getSalePrice() fn failed", 0 == llsaleinfo.getSalePrice());  		ensure("25. The getCRC32() fn failed", 0 == llsaleinfo.getCRC32());  		ensure("26. LLSaleInfo::lookup(const char* name) fn failed", LLSaleInfo::FS_NOT == llsaleinfo.lookup(sale)); diff --git a/indra/test/lltemplatemessagebuilder_tut.cpp b/indra/test/lltemplatemessagebuilder_tut.cpp index 12a323ac4d..36968b8e0f 100644 --- a/indra/test/lltemplatemessagebuilder_tut.cpp +++ b/indra/test/lltemplatemessagebuilder_tut.cpp @@ -61,7 +61,7 @@ namespace tut  									   1,  									   0,          									   0,         -									   FALSE,         +									   false,          									   "notasharedsecret",  									   NULL,  									   false, diff --git a/indra/test/message_tut.cpp b/indra/test/message_tut.cpp index 76063e6db1..0a3e6621aa 100644 --- a/indra/test/message_tut.cpp +++ b/indra/test/message_tut.cpp @@ -75,7 +75,7 @@ namespace tut  								   1,  								   0,          								   0,         -								   FALSE,         +								   false,          								   "notasharedsecret",  								   NULL,  								   false, | 
