diff options
Diffstat (limited to 'indra/llui/llluafloater.h')
-rw-r--r-- | indra/llui/llluafloater.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/llui/llluafloater.h b/indra/llui/llluafloater.h index ccc3ccb39b..36e65ac7fc 100644 --- a/indra/llui/llluafloater.h +++ b/indra/llui/llluafloater.h @@ -36,6 +36,7 @@ public: LLLuaFloater(const LLSD &key); BOOL postBuild(); virtual ~LLLuaFloater(); + void draw(); void registerCallback(const std::string &ctrl_name, const std::string &event); void onClose(bool app_quitting); @@ -48,6 +49,7 @@ public: private: LLReqID mReqID; LLDispatchListener mDispatchListener; + std::unique_ptr<LLTimer> mIdleTimer; std::string mReplyPumpName; }; |