diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2021-07-15 20:28:26 +0300 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2021-07-15 21:24:22 +0300 |
commit | e7563ff13fe1e6e77a0c6de5dcf0c1b67a6d2e2c (patch) | |
tree | 8e003b78518f1b654f1eac03fd4958f051f356be /indra/newview/llkeyconflict.h | |
parent | 48921a62322bd4eae17d1085256693aa66041dbd (diff) |
SL-443 Keybindings: Backward compatibility #2
Diffstat (limited to 'indra/newview/llkeyconflict.h')
-rw-r--r-- | indra/newview/llkeyconflict.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llkeyconflict.h b/indra/newview/llkeyconflict.h index e60d6d27b7..23c1adf1e4 100644 --- a/indra/newview/llkeyconflict.h +++ b/indra/newview/llkeyconflict.h @@ -138,11 +138,11 @@ public: bool hasUnsavedChanges() const { return mHasUnsavedChanges; } void setLoadMode(ESourceMode mode) { mLoadMode = mode; } - ESourceMode getLoadMode() { return mLoadMode; } + ESourceMode getLoadMode() const { return mLoadMode; } private: void resetToDefaultAndResolve(const std::string &control_name, bool ignore_conflicts); - void resetToDefaults(ESourceMode mode); + void resetToDefaultsAndResolve(); // at the moment these kind of control is not savable, but takes part in conflict resolution void registerTemporaryControl(const std::string &control_name, EMouseClickType mouse_ind, KEY key, MASK mask, U32 conflict_mask); |