diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-06-17 09:51:05 +0300 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-06-23 14:51:30 +0300 |
commit | f6662ffb26208a40f7c823c67e53f36b0267b71c (patch) | |
tree | 8509c47f283b15ba0c3963ce509cfdd336995739 | |
parent | df306eec5b9479dac72418bdd8c42a4f328e4f2b (diff) |
SL-13469 Fixed use of wrong clear function
-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 697e3253df..b8edf4ad84 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() |