diff options
| author | callum <none@none> | 2010-10-14 15:18:35 -0700 | 
|---|---|---|
| committer | callum <none@none> | 2010-10-14 15:18:35 -0700 | 
| commit | 562fa040dfce3904271150c8213ef46c90369ac6 (patch) | |
| tree | 105426c653cc311e8f04e1557ca61e28cb28e194 | |
| parent | eea2b8f9d3fe909befd43ca8db7878855ddd661d (diff) | |
| parent | 8b9b7fed7367eeb7b055f7b2a44a37539634045e (diff) | |
Merge
| -rw-r--r-- | indra/newview/app_settings/settings.xml | 11 | ||||
| -rw-r--r-- | indra/newview/llappviewer.cpp | 6 | ||||
| -rw-r--r-- | indra/newview/llappviewerwin32.cpp | 6 | 
3 files changed, 1 insertions, 22 deletions
diff --git a/indra/newview/app_settings/settings.xml b/indra/newview/app_settings/settings.xml index 7538b152c1..36ac7ecf99 100644 --- a/indra/newview/app_settings/settings.xml +++ b/indra/newview/app_settings/settings.xml @@ -2996,17 +2996,6 @@          <key>Value</key>          <integer>0</integer>      </map> -    <key>FastQuit</key> -      <map> -        <key>Comment</key> -        <string>Quits as quickly as possible, only sending logout request before forcefully terminating.  Use with care, as this might result in data corruption or loss.</string> -        <key>Persist</key> -        <integer>1</integer> -        <key>Type</key> -        <string>Boolean</string> -        <key>Value</key> -        <integer>0</integer> -    </map>  	<key>FeatureManagerHTTPTable</key>        <map>          <key>Comment</key> diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index ba3c6a5916..61599ad435 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -2884,6 +2884,7 @@ void LLAppViewer::forceQuit()  	LLApp::setQuitting();   } +//TODO: remove  void LLAppViewer::fastQuit(S32 error_code)  {  	// finish pending transfers @@ -2902,11 +2903,6 @@ void LLAppViewer::fastQuit(S32 error_code)  void LLAppViewer::requestQuit()  { -	if (gSavedSettings.getBOOL("FastQuit")) -	{ -		fastQuit(); -	} -  	llinfos << "requestQuit" << llendl;  	LLViewerRegion* region = gAgent.getRegion(); diff --git a/indra/newview/llappviewerwin32.cpp b/indra/newview/llappviewerwin32.cpp index 2c6f014d17..d328567a0e 100644 --- a/indra/newview/llappviewerwin32.cpp +++ b/indra/newview/llappviewerwin32.cpp @@ -175,12 +175,6 @@ int APIENTRY WINMAIN(HINSTANCE hInstance,  		viewer_app_ptr->mainLoop();  	} -	if (gSavedSettings.getBOOL("FastQuit")) -	{ -		viewer_app_ptr->fastQuit(); -	} - -  	if (!LLApp::isError())  	{  		//  | 
