From 549a2c31f676ac37fd7f49e0cb9c38a74480f80a Mon Sep 17 00:00:00 2001 From: Ansariel Date: Tue, 9 Sep 2025 11:42:45 +0200 Subject: [PATCH] Remove all those comments in an FS-specific file --- indra/newview/fsfloaterimcontainer.h | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/indra/newview/fsfloaterimcontainer.h b/indra/newview/fsfloaterimcontainer.h index 8690e6e859..21b790d26f 100644 --- a/indra/newview/fsfloaterimcontainer.h +++ b/indra/newview/fsfloaterimcontainer.h @@ -41,18 +41,16 @@ public: FSFloaterIMContainer(const LLSD& seed); virtual ~FSFloaterIMContainer(); - bool postBuild() override; // missing overrides - void onOpen(const LLSD& key) override; // missing overrides - void onClose(bool app_quitting) override; // missing overrides + bool postBuild() override; + void onOpen(const LLSD& key) override; + void onClose(bool app_quitting) override; void onCloseFloater(LLUUID& id); - void draw() override; // missing overrides - // missing overrides + void draw() override; void addFloater(LLFloater* floaterp, bool select_added_floater, LLTabContainer::eInsertionPoint insertion_point = LLTabContainer::END) override; - // // [SL:KB] - Patch: Chat-NearbyChatBar | Checked: 2011-12-11 (Catznip-3.2.0d) | Added: Catznip-3.2.0d - void removeFloater(LLFloater* floaterp) override; // missing overrides + void removeFloater(LLFloater* floaterp) override; // [/SL:KB] bool hasFloater(LLFloater* floaterp); @@ -61,18 +59,18 @@ public: static FSFloaterIMContainer* findInstance(); static FSFloaterIMContainer* getInstance(); - F32 getCurrentTransparency() override; // [FIRE-35804] Allow the IM floater to have separate transparency + F32 getCurrentTransparency() override; - void setVisible(bool b) override; // missing overrides - void setMinimized(bool b) override; // missing overrides + void setVisible(bool b) override; + void setMinimized(bool b) override; - void onNewMessageReceived(const LLSD& msg); // public so nearbychat can call it directly. TODO: handle via callback. -AO + void onNewMessageReceived(const LLSD& msg); - void sessionAdded(const LLUUID& session_id, const std::string& name, const LLUUID& other_participant_id, bool has_offline_msg) override; // missing overrides + void sessionAdded(const LLUUID& session_id, const std::string& name, const LLUUID& other_participant_id, bool has_offline_msg) override; void sessionActivated(const LLUUID& session_id, const std::string& name, const LLUUID& other_participant_id) override {}; void sessionVoiceOrIMStarted(const LLUUID& session_id) override {}; - void sessionRemoved(const LLUUID& session_id) override; // missing overrides - void sessionIDUpdated(const LLUUID& old_session_id, const LLUUID& new_session_id) override; // missing overrides + void sessionRemoved(const LLUUID& session_id) override; + void sessionIDUpdated(const LLUUID& old_session_id, const LLUUID& new_session_id) override; static void reloadEmptyFloaters(); void initTabs();