diff options
| author | Todd Stinson <stinson@lindenlab.com> | 2012-05-23 18:58:47 -0700 | 
|---|---|---|
| committer | Todd Stinson <stinson@lindenlab.com> | 2012-05-23 18:58:47 -0700 | 
| commit | e76d7d73c5867b6e662672c88244c38b49d34d0d (patch) | |
| tree | fa99374f8f2d880ca52ace8c60f3574d2ea3f71f | |
| parent | e3ad9d06f292bb9dfdc7e9f8f9898070ce7a2810 (diff) | |
Removing cruft code that is no longer used.
| -rwxr-xr-x | indra/newview/llagent.cpp | 5 | ||||
| -rw-r--r-- | indra/newview/llagent.h | 2 | ||||
| -rw-r--r-- | indra/newview/llagentaccess.cpp | 13 | ||||
| -rw-r--r-- | indra/newview/llagentaccess.h | 9 | ||||
| -rw-r--r-- | indra/newview/llfloaterland.cpp | 19 | ||||
| -rw-r--r-- | indra/newview/llstartup.cpp | 11 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/floater_about_land.xml | 70 | ||||
| -rw-r--r-- | indra/newview/tests/llagentaccess_test.cpp | 12 | 
8 files changed, 5 insertions, 136 deletions
diff --git a/indra/newview/llagent.cpp b/indra/newview/llagent.cpp index b822af352c..23a2908ce6 100755 --- a/indra/newview/llagent.cpp +++ b/indra/newview/llagent.cpp @@ -2633,11 +2633,6 @@ void LLAgent::setGodLevel(U8 god_level)  	mAgentAccess->setGodLevel(god_level);  } -void LLAgent::setAOTransition() -{ -	mAgentAccess->setTransition(); -} -  const LLAgentAccess& LLAgent::getAgentAccess()  {  	return *mAgentAccess; diff --git a/indra/newview/llagent.h b/indra/newview/llagent.h index 18975911de..dcb26efe41 100644 --- a/indra/newview/llagent.h +++ b/indra/newview/llagent.h @@ -654,8 +654,6 @@ public:  	const LLAgentAccess& getAgentAccess();  	BOOL			canManageEstate() const;  	BOOL			getAdminOverride() const; -	// ! BACKWARDS COMPATIBILITY ! This function can go away after the AO transition (see llstartup.cpp). -	void 			setAOTransition();  private:  	LLAgentAccess * mAgentAccess; diff --git a/indra/newview/llagentaccess.cpp b/indra/newview/llagentaccess.cpp index 08a33ab04a..bf2a78e7f5 100644 --- a/indra/newview/llagentaccess.cpp +++ b/indra/newview/llagentaccess.cpp @@ -33,8 +33,7 @@ LLAgentAccess::LLAgentAccess(LLControlGroup& savedSettings) :  	mSavedSettings(savedSettings),  	mAccess(SIM_ACCESS_PG),  	mAdminOverride(false), -	mGodLevel(GOD_NOT), -	mAOTransition(false) +	mGodLevel(GOD_NOT)  {  } @@ -182,16 +181,6 @@ void LLAgentAccess::setMaturity(char text)  	mSavedSettings.setU32("PreferredMaturity", preferred_access);  } -void LLAgentAccess::setTransition() -{ -	mAOTransition = true; -} - -bool LLAgentAccess::isInTransition() const -{ -	return mAOTransition; -} -  bool LLAgentAccess::canSetMaturity(S32 maturity)  {  	if (isGodlike()) // Gods can always set their Maturity level diff --git a/indra/newview/llagentaccess.h b/indra/newview/llagentaccess.h index 2e98e4eea1..90023d7575 100644 --- a/indra/newview/llagentaccess.h +++ b/indra/newview/llagentaccess.h @@ -64,8 +64,6 @@ public:  	static int convertTextToMaturity(char text); -	void setTransition();	// sets the transition bit, which defaults to false -	bool isInTransition() const;  	bool canSetMaturity(S32 maturity);  private: @@ -73,13 +71,6 @@ private:  	U8 mGodLevel;  	bool mAdminOverride; -	// this should be deleted after the 60-day AO transition. -	// It should be safe to remove it in Viewer 2009 -	// It's set by a special short-term flag in login.cgi  -	// called ao_transition. When that's gone, this can go, along with -	// all of the code that depends on it. -	bool mAOTransition; -	  	LLControlGroup& mSavedSettings;  }; diff --git a/indra/newview/llfloaterland.cpp b/indra/newview/llfloaterland.cpp index 95da8ff948..6323530648 100644 --- a/indra/newview/llfloaterland.cpp +++ b/indra/newview/llfloaterland.cpp @@ -1865,23 +1865,8 @@ BOOL LLPanelLandOptions::postBuild()  	childSetCommitCallback("ShowDirectoryCheck", onCommitAny, this); -	if (gAgent.getAgentAccess().isInTransition()) -	{ -		// during the AO transition, this combo has an Adult item. -		// Post-transition, it goes away. We can remove this conditional -		// after the transition and just use the "else" clause. -		mCategoryCombo = getChild<LLComboBox>( "land category with adult"); -		childSetCommitCallback("land category with adult", onCommitAny, this); -	} -	else -	{ -		// this is the code that should be preserved post-transition -		// you could also change the XML to set visibility and enabled true. -		mCategoryCombo = getChild<LLComboBox>( "land category"); -		childSetCommitCallback("land category", onCommitAny, this); -	} -	mCategoryCombo->setVisible(true); -	mCategoryCombo->setEnabled(true); +	mCategoryCombo = getChild<LLComboBox>( "land category"); +	childSetCommitCallback("land category", onCommitAny, this);  	mMatureCtrl = getChild<LLCheckBoxCtrl>( "MatureCheck"); diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp index 0ac8c1fe39..a24aea25bc 100644 --- a/indra/newview/llstartup.cpp +++ b/indra/newview/llstartup.cpp @@ -3211,17 +3211,6 @@ bool process_login_success_response()  		gSavedSettings.setU32("PreferredMaturity", preferredMaturity);  	} -	// During the AO transition, this flag will be true. Then the flag will -	// go away. After the AO transition, this code and all the code that -	// uses it can be deleted. -	text = response["ao_transition"].asString(); -	if (!text.empty()) -	{ -		if (text == "1") -		{ -			gAgent.setAOTransition(); -		} -	}  	text = response["start_location"].asString();  	if(!text.empty())  diff --git a/indra/newview/skins/default/xui/en/floater_about_land.xml b/indra/newview/skins/default/xui/en/floater_about_land.xml index 795d31689d..fb45e277fc 100644 --- a/indra/newview/skins/default/xui/en/floater_about_land.xml +++ b/indra/newview/skins/default/xui/en/floater_about_land.xml @@ -1354,79 +1354,13 @@ Only large parcels can be listed in search.               top="150"               width="430" />              <combo_box -             enabled="false" -             height="23" -             layout="topleft" -             left="20" -             top="194" -             name="land category with adult" -             visible="false" -             width="140"> -                <combo_box.item -                 label="Any Category" -                 name="item0" -                 value="any" /> -                <combo_box.item -                 label="Linden Location" -                 name="item1" -                 value="linden" /> -                <combo_box.item -                 label="Adult" -                 name="item2" -                 value="adult" /> -                <combo_box.item -                 label="Arts & Culture" -                 name="item3" -                 value="arts" /> -                <combo_box.item -                 label="Business" -                 name="item4" -                 value="store" /> -                <combo_box.item -                 label="Educational" -                 name="item5" -                 value="educational" /> -                <combo_box.item -                 label="Gaming" -                 name="item6" -                 value="game" /> -                <combo_box.item -                 label="Hangout" -                 name="item7" -                 value="gather" /> -                <combo_box.item -                 label="Newcomer Friendly" -                 name="item8" -                 value="newcomer" /> -                <combo_box.item -                 label="Parks & Nature" -                 name="item9" -                 value="park" /> -                <combo_box.item -                 label="Residential" -                 name="item10" -                 value="home" /> -                <combo_box.item -                 label="Shopping" -                 name="item11" -                 value="shopping" /> -                <combo_box.item -                 label="Rental" -                 name="item13" -                 value="rental" /> -                <combo_box.item -                 label="Other" -                 name="item12" -                 value="other" /> -            </combo_box> -            <combo_box -             enabled="false" +             enabled="true"               height="23"               layout="topleft"               left="20"               top="194"               name="land category" -             visible="false" +             visible="true"               width="140">                  <combo_box.item                   label="Any Category" diff --git a/indra/newview/tests/llagentaccess_test.cpp b/indra/newview/tests/llagentaccess_test.cpp index c970d79975..fbd2c7328b 100644 --- a/indra/newview/tests/llagentaccess_test.cpp +++ b/indra/newview/tests/llagentaccess_test.cpp @@ -239,18 +239,6 @@ namespace tut  		cgr.declareU32("PreferredMaturity", SIM_ACCESS_PG, "declared_for_test", FALSE);  		LLAgentAccess aa(cgr); -		ensure("1 transition starts false", !aa.isInTransition()); -		aa.setTransition(); -		ensure("2 transition now true", aa.isInTransition()); -	} - -	template<> template<> -	void agentaccess_object_t::test<6>() -	{ -		LLControlGroup cgr("test"); -		cgr.declareU32("PreferredMaturity", SIM_ACCESS_PG, "declared_for_test", FALSE); -		LLAgentAccess aa(cgr); -		  		cgr.setU32("PreferredMaturity", SIM_ACCESS_ADULT);  		aa.setMaturity('M');  		ensure("1 preferred maturity pegged to M when maturity is M", cgr.getU32("PreferredMaturity") == SIM_ACCESS_MATURE);  | 
