diff options
author | Dmitry Oleshko <doleshko@productengine.com> | 2009-11-20 16:28:52 +0200 |
---|---|---|
committer | Dmitry Oleshko <doleshko@productengine.com> | 2009-11-20 16:28:52 +0200 |
commit | 2d9202cb812dec65ec571035389aacd49d19e659 (patch) | |
tree | be344d02c49710d5c8282593b699715cf0c092af /indra/llui | |
parent | 0876df6eef35a88bc0804e1d8eb0f4471eeda9f2 (diff) |
implemented low task (EXT-1476) Make layouts for Alert, Tip and Script notifications based on XML
- made XML-files for the following controls on the panel for alert toasts: button, check box, icon and line editor.
- changed creation of these controls in code: from XML vs. from Params in run-time
- added getFont method to the LLCheckBox control
--HG--
branch : product-engine
Diffstat (limited to 'indra/llui')
-rw-r--r-- | indra/llui/llcheckboxctrl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/llui/llcheckboxctrl.h b/indra/llui/llcheckboxctrl.h index 2f8e8fdd23..b14e66b915 100644 --- a/indra/llui/llcheckboxctrl.h +++ b/indra/llui/llcheckboxctrl.h @@ -107,6 +107,7 @@ public: std::string getLabel() const; void setFont( const LLFontGL* font ) { mFont = font; } + const LLFontGL* getFont() { return mFont; } virtual void setControlName(const std::string& control_name, LLView* context); |