OSX build fixes

master
Roxie Linden 2024-03-03 16:13:41 -08:00
parent 2117f8c4ba
commit 66d65edbc4
2 changed files with 5 additions and 5 deletions

View File

@ -109,7 +109,7 @@ public:
virtual void initInstance(); // Called after construction to initialize the class.
protected:
virtual ~LLVOAvatar();
static bool LLVOAvatar::handleVOAvatarPrefsChanged(const LLSD &newvalue);
static bool handleVOAvatarPrefsChanged(const LLSD &newvalue);
/** Initialization
** **

View File

@ -146,7 +146,7 @@ public:
void requestChannelInfo() override;
protected:
virtual void setState(EState state);
void setState(EState state) override;
private:
void voiceCallCapCoro(std::string url);
@ -158,7 +158,7 @@ private:
class LLVoiceChannelProximal : public LLVoiceChannel, public LLSingleton<LLVoiceChannelProximal>
{
LLSINGLETON(LLVoiceChannelProximal);
LLSINGLETON_C11(LLVoiceChannelProximal);
public:
void onChange(EStatusType status, const LLSD& channelInfo, bool proximal) override;
@ -184,10 +184,10 @@ public:
void requestChannelInfo() override;
void deactivate() override;
void setChannelInfo(const LLSD& channel_info);
void setChannelInfo(const LLSD& channel_info) override;
protected:
virtual void setState(EState state);
void setState(EState state) override;
private: