aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llui/llcheckboxctrl.h
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/llui/llcheckboxctrl.h')
-rw-r--r--linden/indra/llui/llcheckboxctrl.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/linden/indra/llui/llcheckboxctrl.h b/linden/indra/llui/llcheckboxctrl.h
index 37b1330..6aa7113 100644
--- a/linden/indra/llui/llcheckboxctrl.h
+++ b/linden/indra/llui/llcheckboxctrl.h
@@ -110,7 +110,8 @@ public:
110 110
111 static void onButtonPress(void *userdata); 111 static void onButtonPress(void *userdata);
112 112
113 virtual BOOL isDirty(); // Returns TRUE if the user has modified this control. 113 virtual BOOL isDirty() const; // Returns TRUE if the user has modified this control.
114 virtual void resetDirty(); // Clear dirty state
114 115
115protected: 116protected:
116 // note: value is stored in toggle state of button 117 // note: value is stored in toggle state of button
@@ -120,7 +121,8 @@ protected:
120 LLColor4 mTextEnabledColor; 121 LLColor4 mTextEnabledColor;
121 LLColor4 mTextDisabledColor; 122 LLColor4 mTextDisabledColor;
122 BOOL mRadioStyle; 123 BOOL mRadioStyle;
123 BOOL mInitialValue; 124 BOOL mInitialValue; // Value set in constructor
125 BOOL mSetValue; // Value set programmatically
124 BOOL mKeyboardFocusOnClick; 126 BOOL mKeyboardFocusOnClick;
125 LLViewBorder* mBorder; 127 LLViewBorder* mBorder;
126}; 128};