diff options
| -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 5c54b88927..f8bd6fa3b9 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 a245639fac..39c3181cdc 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())  	{  		// | 
