diff options
author | Paul Guslisty <pguslisty@productengine.com> | 2010-12-14 14:53:51 +0200 |
---|---|---|
committer | Paul Guslisty <pguslisty@productengine.com> | 2010-12-14 14:53:51 +0200 |
commit | 29dc24a3ea8d6f3d3aa83fd6b22921937d0dd430 (patch) | |
tree | 17312ffbf6c4471ee4c30df7b6857c9c296bce4f /indra/newview/llscriptfloater.h | |
parent | 1c48a4cf38a06a30a951e4441dcd538481f88639 (diff) |
STORM-713 FIXED XML/UI issues in llTextBox
- As the class LLToastNotifyPanel is deprecated, made the class LLToastScriptTextbox derived directly from LLToastPanel.
- Added callback for ignore button.
Now LLToastScriptTextbox has its own XML, therefore it's not needed to dynamically create toast panel.
Since LLToastNotifyPanel is deprecated all new notification toasts should be created this way.
Diffstat (limited to 'indra/newview/llscriptfloater.h')
-rw-r--r-- | indra/newview/llscriptfloater.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llscriptfloater.h b/indra/newview/llscriptfloater.h index dc52baa115..8e959a3d0e 100644 --- a/indra/newview/llscriptfloater.h +++ b/indra/newview/llscriptfloater.h @@ -30,7 +30,7 @@ #include "lltransientdockablefloater.h" #include "llnotificationptr.h" -class LLToastNotifyPanel; +class LLToastPanel; /** * Handles script notifications ("ScriptDialog" and "ScriptDialogGroup") @@ -206,7 +206,7 @@ protected: private: bool isScriptTextbox(LLNotificationPtr notification); - LLToastNotifyPanel* mScriptForm; + LLToastPanel* mScriptForm; LLUUID mNotificationId; LLUUID mObjectId; bool mSaveFloaterPosition; |