diff options
| author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-06-17 09:51:05 +0300 | 
|---|---|---|
| committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-06-17 09:51:05 +0300 | 
| commit | 1b744fb2a64f04332590b566783da2f955005414 (patch) | |
| tree | daa257e4b700b850bbb708662d4efc88c4543c95 /indra/newview | |
| parent | a94a0a34c7eefc4540bd8200b8c13145ecbe2b4a (diff) | |
SL-13469 Fixed use of wrong clear function
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/llfloaterpreference.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/indra/newview/llfloaterpreference.cpp b/indra/newview/llfloaterpreference.cpp index a1d3c65289..91a3ae384d 100644 --- a/indra/newview/llfloaterpreference.cpp +++ b/indra/newview/llfloaterpreference.cpp @@ -2934,7 +2934,8 @@ void LLPanelPreferenceControls::cancel()              mConflictHandler[i].clear();          }      } -    pControlsTable->clear(); +    pControlsTable->clearRows(); +    pControlsTable->clearColumns();  }  void LLPanelPreferenceControls::saveSettings() | 
