diff options
| author | Cosmic Linden <cosmic@lindenlab.com> | 2023-10-13 09:58:27 -0700 | 
|---|---|---|
| committer | Cosmic Linden <cosmic@lindenlab.com> | 2023-10-13 09:58:27 -0700 | 
| commit | d2da77698005579f9fdaecad5a5d80189ad03f23 (patch) | |
| tree | 6949feed54fd47063d8b459bf8336a3443d66875 | |
| parent | 14c3730bf128a6f01825954ee67a06188e134526 (diff) | |
DRTVWR-592: Fix some virtual functions not being marked override
| -rw-r--r-- | indra/newview/llfloaterregioninfo.h | 16 | 
1 files changed, 8 insertions, 8 deletions
diff --git a/indra/newview/llfloaterregioninfo.h b/indra/newview/llfloaterregioninfo.h index 43a69e5804..bfdeb9440d 100644 --- a/indra/newview/llfloaterregioninfo.h +++ b/indra/newview/llfloaterregioninfo.h @@ -76,7 +76,7 @@ public:  	void onOpen(const LLSD& key) override; -	/*virtual*/ void onClose(bool app_quitting); +	void onClose(bool app_quitting) override;  	BOOL postBuild() override;  	static void processEstateOwnerRequest(LLMessageSystem* msg, void**); @@ -249,7 +249,7 @@ public:  	BOOL postBuild() override; -	bool refreshFromRegion(LLViewerRegion* region);					// refresh local settings from region update from simulator +    bool refreshFromRegion(LLViewerRegion* region) override;                // refresh local settings from region update from simulator  	void setEnvControls(bool available);									// Whether environment settings are available for this region  	BOOL validateTextureSizes(); @@ -308,10 +308,10 @@ public:  	static void updateEstateOwnerName(const std::string& name);  	bool refreshFromRegion(LLViewerRegion* region) override; -	virtual bool estateUpdate(LLMessageSystem* msg); +	bool estateUpdate(LLMessageSystem* msg) override;  	BOOL postBuild() override; -	virtual void updateChild(LLUICtrl* child_ctrl); +	void updateChild(LLUICtrl* child_ctrl) override;  	void refresh() override;  	void refreshFromEstate(); @@ -343,15 +343,15 @@ public:  	~LLPanelEstateCovenant() {}  	BOOL postBuild() override; -	virtual void updateChild(LLUICtrl* child_ctrl); +	void updateChild(LLUICtrl* child_ctrl) override;  	bool refreshFromRegion(LLViewerRegion* region) override; -	virtual bool estateUpdate(LLMessageSystem* msg); +	bool estateUpdate(LLMessageSystem* msg) override;  	// LLView overrides  	BOOL handleDragAndDrop(S32 x, S32 y, MASK mask,  						   BOOL drop, EDragAndDropType cargo_type,  						   void *cargo_data, EAcceptance *accept, -						   std::string& tooltip_msg); +						   std::string& tooltip_msg) override;  	static bool confirmChangeCovenantCallback(const LLSD& notification, const LLSD& response);  	static void resetCovenantID(void* userdata);  	static bool confirmResetCovenantCallback(const LLSD& notification, const LLSD& response); @@ -441,7 +441,7 @@ public:  	LLPanelEstateAccess();  	BOOL postBuild() override; -	virtual void updateChild(LLUICtrl* child_ctrl); +	void updateChild(LLUICtrl* child_ctrl) override;  	void updateControls(LLViewerRegion* region);  	void updateLists();  | 
