diff options
author | Jacek Antonelli | 2008-08-15 23:45:07 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:07 -0500 |
commit | 8465910c79b8e746e04fd581cca2d60399e569b9 (patch) | |
tree | f43fec3e83c46e0d6190dca923d6fb268b52ffdd /linden/indra/llui/llcheckboxctrl.h | |
parent | Second Life viewer sources 1.18.2.1 (diff) | |
download | meta-impy-8465910c79b8e746e04fd581cca2d60399e569b9.zip meta-impy-8465910c79b8e746e04fd581cca2d60399e569b9.tar.gz meta-impy-8465910c79b8e746e04fd581cca2d60399e569b9.tar.bz2 meta-impy-8465910c79b8e746e04fd581cca2d60399e569b9.tar.xz |
Second Life viewer sources 1.18.3.2-RC
Diffstat (limited to '')
-rw-r--r-- | linden/indra/llui/llcheckboxctrl.h | 6 |
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 | ||
115 | protected: | 116 | protected: |
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 | }; |