diff options
Diffstat (limited to 'linden/indra/llui/lluictrl.h')
-rw-r--r-- | linden/indra/llui/lluictrl.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/linden/indra/llui/lluictrl.h b/linden/indra/llui/lluictrl.h index 2060a0d..455a8c0 100644 --- a/linden/indra/llui/lluictrl.h +++ b/linden/indra/llui/lluictrl.h | |||
@@ -149,7 +149,9 @@ public: | |||
149 | }; | 149 | }; |
150 | 150 | ||
151 | // Returns TRUE if the user has modified this control. Editable controls should override this. | 151 | // Returns TRUE if the user has modified this control. Editable controls should override this. |
152 | virtual BOOL isDirty() { return FALSE; }; | 152 | virtual BOOL isDirty() const { return FALSE; }; |
153 | // Clear the dirty state | ||
154 | virtual void resetDirty() {}; | ||
153 | 155 | ||
154 | protected: | 156 | protected: |
155 | virtual void onFocusReceived(); | 157 | virtual void onFocusReceived(); |