diff options
author | Oz Linden <oz@lindenlab.com> | 2010-11-18 18:57:52 -0500 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2010-11-18 18:57:52 -0500 |
commit | d67c395800f8e7f78abd7e23f8ef4c86a2a81830 (patch) | |
tree | 11d5b9f9c0c6d28d959ea63b1127a0e931bde69f /indra/newview/llfloaterpreference.h | |
parent | 3eb3198248395922a1dfe277399e1a3cd235f952 (diff) | |
parent | d701824c0b5fdffd68d3f38974ec112fd5a343d3 (diff) |
merge fix for STORM-654
Diffstat (limited to 'indra/newview/llfloaterpreference.h')
-rw-r--r-- | indra/newview/llfloaterpreference.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/indra/newview/llfloaterpreference.h b/indra/newview/llfloaterpreference.h index e99731b92e..46f50d9a4d 100644 --- a/indra/newview/llfloaterpreference.h +++ b/indra/newview/llfloaterpreference.h @@ -95,6 +95,14 @@ protected: void setHardwareDefaults(); // callback for when client turns on shaders void onVertexShaderEnable(); + // callback for changing double click action checkbox + void onDoubleClickCheckBox(LLUICtrl* ctrl); + // callback for selecting double click action radio-button + void onDoubleClickRadio(); + // updates double-click action settings depending on controls from preferences + void updateDoubleClickSettings(); + // updates double-click action controls depending on values from settings.xml + void updateDoubleClickControls(); // This function squirrels away the current values of the controls so that // cancel() can restore them. @@ -145,6 +153,9 @@ public: static void refreshSkin(void* data); private: static std::string sSkin; + // set true if state of double-click action checkbox or radio-group was changed by user + // (reset back to false on apply or cancel) + bool mDoubleClickActionDirty; bool mGotPersonalInfo; bool mOriginalIMViaEmail; |