diff options
author | Richard Linden <none@none> | 2010-04-27 16:08:56 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2010-04-27 16:08:56 -0700 |
commit | fbc0e795b114ddbfb73cc62ce25a1e9a1cafacba (patch) | |
tree | eae093fa71b3fbe7c6901fc3326785102627a65f /indra/llui/llfloater.h | |
parent | 48b3ac20d99e842b6d7adba63e9fa75a7d5cd82c (diff) |
added empty param blocks to registered widgets that didn't have them
made LLDefaultChildRegistry::Register errors actually crash the client...llerrs doesn't work in static initializers
Diffstat (limited to 'indra/llui/llfloater.h')
-rw-r--r-- | indra/llui/llfloater.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/llui/llfloater.h b/indra/llui/llfloater.h index 403723d9d8..444711de81 100644 --- a/indra/llui/llfloater.h +++ b/indra/llui/llfloater.h @@ -432,11 +432,15 @@ private: class LLFloaterView : public LLUICtrl { +public: + struct Params : public LLInitParam::Block<Params, LLUICtrl::Params>{}; + protected: LLFloaterView (const Params& p); friend class LLUICtrlFactory; public: + /*virtual*/ void reshape(S32 width, S32 height, BOOL called_from_parent = TRUE); void reshapeFloater(S32 width, S32 height, BOOL called_from_parent, BOOL adjust_vertical); |