diff options
| author | Mnikolenko Productengine <mnikolenko@productengine.com> | 2023-08-14 18:05:26 +0300 | 
|---|---|---|
| committer | Mnikolenko Productengine <mnikolenko@productengine.com> | 2023-08-14 18:05:26 +0300 | 
| commit | 7ea406355c4e3efc25303cb1f51637ac3e0f326d (patch) | |
| tree | 249e0647fcd0f538d872030ce04281b59c56bb0d | |
| parent | edf0874e0656c6f512df50ee52236209531ca329 (diff) | |
SL-20144 remove the code related to non-existent button; remove inappropriate param
| -rw-r--r-- | indra/newview/llpanelprofilepicks.cpp | 29 | ||||
| -rw-r--r-- | indra/newview/llpanelprofilepicks.h | 6 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/panel_group_list_item_short.xml | 1 | 
3 files changed, 0 insertions, 36 deletions
| diff --git a/indra/newview/llpanelprofilepicks.cpp b/indra/newview/llpanelprofilepicks.cpp index db3a3c6de5..c2a0c16df4 100644 --- a/indra/newview/llpanelprofilepicks.cpp +++ b/indra/newview/llpanelprofilepicks.cpp @@ -559,7 +559,6 @@ void LLPanelProfilePick::setAvatarId(const LLUUID& avatar_id)      {          mPickName->setEnabled(TRUE);          mPickDescription->setEnabled(TRUE); -        mSetCurrentLocationButton->setVisible(TRUE);      }      else      { @@ -574,7 +573,6 @@ BOOL LLPanelProfilePick::postBuild()      mSaveButton = getChild<LLButton>("save_changes_btn");      mCreateButton = getChild<LLButton>("create_changes_btn");      mCancelButton = getChild<LLButton>("cancel_changes_btn"); -    mSetCurrentLocationButton = getChild<LLButton>("set_to_curr_location_btn");      mSnapshotCtrl = getChild<LLTextureCtrl>("pick_snapshot");      mSnapshotCtrl->setCommitCallback(boost::bind(&LLPanelProfilePick::onSnapshotChanged, this)); @@ -585,7 +583,6 @@ BOOL LLPanelProfilePick::postBuild()      mSaveButton->setCommitCallback(boost::bind(&LLPanelProfilePick::onClickSave, this));      mCreateButton->setCommitCallback(boost::bind(&LLPanelProfilePick::onClickSave, this));      mCancelButton->setCommitCallback(boost::bind(&LLPanelProfilePick::onClickCancel, this)); -    mSetCurrentLocationButton->setCommitCallback(boost::bind(&LLPanelProfilePick::onClickSetLocation, this));      mPickName->setKeystrokeCallback(boost::bind(&LLPanelProfilePick::onPickChanged, this, _1), NULL);      mPickName->setEnabled(FALSE); @@ -747,32 +744,6 @@ BOOL LLPanelProfilePick::isDirty() const      return FALSE;  } -void LLPanelProfilePick::onClickSetLocation() -{ -    // Save location for later use. -    setPosGlobal(gAgent.getPositionGlobal()); - -    std::string parcel_name, region_name; - -    LLParcel* parcel = LLViewerParcelMgr::getInstance()->getAgentParcel(); -    if (parcel) -    { -        mParcelId = parcel->getID(); -        parcel_name = parcel->getName(); -    } - -    LLViewerRegion* region = gAgent.getRegion(); -    if (region) -    { -        region_name = region->getName(); -    } - -    setPickLocation(createLocationText(getLocationNotice(), parcel_name, region_name, getPosGlobal())); - -    mLocationChanged = true; -    enableSaveButton(TRUE); -} -  void LLPanelProfilePick::onClickSave()  {      sendUpdate(); diff --git a/indra/newview/llpanelprofilepicks.h b/indra/newview/llpanelprofilepicks.h index f84463cc9b..228dfd5958 100644 --- a/indra/newview/llpanelprofilepicks.h +++ b/indra/newview/llpanelprofilepicks.h @@ -202,11 +202,6 @@ protected:      void resetDirty() override;      /** -     * Callback for "Set Location" button click -     */ -    void onClickSetLocation(); - -    /**       * Callback for "Save" and "Create" button click       */      void onClickSave(); @@ -228,7 +223,6 @@ protected:      LLTextureCtrl*      mSnapshotCtrl;      LLLineEditor*       mPickName;      LLTextEditor*       mPickDescription; -    LLButton*           mSetCurrentLocationButton;      LLButton*           mSaveButton;      LLButton*           mCreateButton;      LLButton*           mCancelButton; diff --git a/indra/newview/skins/default/xui/en/panel_group_list_item_short.xml b/indra/newview/skins/default/xui/en/panel_group_list_item_short.xml index b72af7221e..8e2a241661 100644 --- a/indra/newview/skins/default/xui/en/panel_group_list_item_short.xml +++ b/indra/newview/skins/default/xui/en/panel_group_list_item_short.xml @@ -71,7 +71,6 @@       name="visibility_show_btn"       tool_tip="Show group on my profile"       top_delta="0" -     right_delta="0"       height="20"       width="20"       follows="right" | 
