diff options
| author | Ima Mechanique <none@none> | 2012-01-04 15:16:35 +0000 | 
|---|---|---|
| committer | Ima Mechanique <none@none> | 2012-01-04 15:16:35 +0000 | 
| commit | ce6bd89ca4fbc3d1d75725e8cfc8857e21052107 (patch) | |
| tree | a23141a8a1541c8c218c0b0c814340186a36bfbc | |
| parent | 032a5e45728597106e07d2d22de3799aaaaf4923 (diff) | |
Changes per Oz's suggestion on RB.
| -rw-r--r-- | indra/newview/llpreviewscript.cpp | 20 | 
1 files changed, 8 insertions, 12 deletions
| diff --git a/indra/newview/llpreviewscript.cpp b/indra/newview/llpreviewscript.cpp index cab30b1295..88727bf59b 100644 --- a/indra/newview/llpreviewscript.cpp +++ b/indra/newview/llpreviewscript.cpp @@ -1154,18 +1154,15 @@ void LLScriptEdCore::onBtnSaveToFile( void* userdata )  	if( self->mSaveCallback )  	{  		LLFilePicker& file_picker = LLFilePicker::instance(); -		if( !file_picker.getSaveFile( LLFilePicker::FFSAVE_SCRIPT ) ) +		if( file_picker.getSaveFile( LLFilePicker::FFSAVE_SCRIPT ) )  		{ -			//File picking cancelled by user, so nothing to do. -			return; +			std::string filename = file_picker.getFirstFile(); +			std::string scriptText=self->mEditor->getText(); +			std::ofstream fout(filename.c_str()); +			fout<<(scriptText); +			fout.close(); +			self->mSaveCallback( self->mUserdata, FALSE );  		} - -		std::string filename = file_picker.getFirstFile(); -		std::string scriptText=self->mEditor->getText(); -		std::ofstream fout(filename.c_str()); -		fout<<(scriptText); -		fout.close(); -		self->mSaveCallback( self->mUserdata, FALSE );  	}  } @@ -1187,8 +1184,7 @@ bool LLScriptEdCore::enableSaveToFileMenu(void* userdata)  bool LLScriptEdCore::enableLoadFromFileMenu(void* userdata)  {  	LLScriptEdCore* self = (LLScriptEdCore*)userdata; -	if (!self || !self->mEditor) return FALSE; -	return self->mEditor->canLoadOrSaveToFile(); +	return (self && self->mEditor) ? self->mEditor->canLoadOrSaveToFile() : FALSE;  }  /// --------------------------------------------------------------------------- | 
