viewer#848 Xcode buildfix

master
Andrey Lihatskiy 2024-02-21 03:31:20 +02:00
parent a5261a5fa8
commit 0fb52bd372
17 changed files with 20 additions and 20 deletions

View File

@ -38,7 +38,7 @@ class LLChicletBar
: public LLSingleton<LLChicletBar>
, public LLPanel
{
LLSINGLETON(LLChicletBar);
LLSINGLETON_C11(LLChicletBar);
LOG_CLASS(LLChicletBar);
public:

View File

@ -47,8 +47,8 @@ class LLFloaterAuction : public LLFloater
friend class LLFloaterReg;
public:
// LLFloater interface
/*virtual*/ void onOpen(const LLSD& key);
/*virtual*/ void draw();
void onOpen(const LLSD& key) override;
void draw() override;
private:

View File

@ -43,7 +43,7 @@ public:
bool postBuild() override;
void draw() override;
void refresh();
void refresh() override;
private:
static void onClickDump(void*);

View File

@ -51,7 +51,7 @@ public:
protected:
/*virtual*/ void handleMediaEvent(LLPluginClassMedia *self, EMediaEvent event);
void handleMediaEvent(LLPluginClassMedia *self, EMediaEvent event) override;
U32 mEventID;

View File

@ -55,7 +55,7 @@ public:
const std::string getHomeUrl();
//bool passesWhiteList( const std::string& test_url );
virtual void draw();
virtual void draw() override;
bool mIdenticalHasMediaInfo;
bool mMultipleMedia;

View File

@ -50,7 +50,7 @@ public:
S32 getExpectedUploadCost() const;
protected:
virtual void onCommit();
virtual void onCommit() override;
protected:
bool mIsAudio;

View File

@ -81,7 +81,7 @@ enum Categories
private:
LLFloaterPermsDefault(const LLSD& seed);
void refresh();
void refresh() override;
static const std::string sCategoryNames[CAT_LAST];
static void updateCapCoro(std::string url);

View File

@ -49,7 +49,7 @@ public:
static BOOL renderBeacons();
static void addBeacons();
void refresh();
void refresh() override;
void sendTelehubInfoRequest();
void onClickConnect();

View File

@ -60,7 +60,7 @@ public:
void updateAgreeEnabled(bool enabled);
// inherited from LLViewerMediaObserver
/*virtual*/ void handleMediaEvent(LLPluginClassMedia* self, EMediaEvent event);
void handleMediaEvent(LLPluginClassMedia* self, EMediaEvent event) override;
private:
static void testSiteIsAliveCoro(LLHandle<LLFloater> handle, std::string url);

View File

@ -45,7 +45,7 @@ public:
void setAzureVerified(bool ok, bool alert, S32 status);
void setGoogleVerified(bool ok, bool alert, S32 status);
void setDeepLVerified(bool ok, bool alert, S32 status);
void onClose(bool app_quitting);
void onClose(bool app_quitting) override;
private:
std::string getSelectedService() const;

View File

@ -58,7 +58,7 @@ private:
void updateControls();
/// Called by voice effect provider when voice effect list is changed.
virtual void onVoiceEffectChanged(bool effect_list_updated);
virtual void onVoiceEffectChanged(bool effect_list_updated) override;
void onClickRecord();
void onClickPlay();

View File

@ -43,7 +43,7 @@ public:
* this callback is being used to add a user whose fullname isn't been loaded before invoking of addUsers().
*/
void addUserCallback(const LLUUID& id, const LLAvatarName& av_name);
void clear();
void clear() override;
void update();
void setCloseCallback(void (*close_callback)(void*), void* data);

View File

@ -43,7 +43,7 @@ public:
LLPanelLandInfo();
virtual ~LLPanelLandInfo();
void refresh();
void refresh() override;
static void refreshAll();
LLCheckBoxCtrl *mCheckShowOwners;

View File

@ -68,7 +68,7 @@ private:
void onSelectionChange();
void onFocusReceived();
void onFocusReceived() override;
private:
LLUICtrl * mFreshCountCtrl;

View File

@ -37,7 +37,7 @@ class LLParcelChangeObserver;
class LLPanelTopInfoBar : public LLPanel, public LLSingleton<LLPanelTopInfoBar>, private LLDestroyClass<LLPanelTopInfoBar>
{
LLSINGLETON(LLPanelTopInfoBar);
LLSINGLETON_C11(LLPanelTopInfoBar);
~LLPanelTopInfoBar();
LOG_CLASS(LLPanelTopInfoBar);
@ -83,7 +83,7 @@ private:
*/
void initParcelIcons();
bool handleRightMouseDown(S32 x, S32 y, MASK mask);
bool handleRightMouseDown(S32 x, S32 y, MASK mask) override;
/**
* Handles clicks on the parcel icons.

View File

@ -313,10 +313,10 @@ private:
private:
bool mIsNew;
//LLUUID mTransmitID;
LLCheckBoxCtrl* mRunningCheckbox;
//LLCheckBoxCtrl* mRunningCheckbox;
BOOL mAskedForRunningInfo;
BOOL mHaveRunningInfo;
LLButton* mResetButton;
//LLButton* mResetButton;
LLPointer<LLViewerInventoryItem> mItem;
BOOL mCloseAfterSave;
// need to save both text and script, so need to decide when done

View File

@ -47,7 +47,7 @@ public:
void setVisible(bool visible) override;
void setDocked(bool docked, bool pop_on_undock = true) override;
virtual LLTransientFloaterMgr::ETransientGroup getGroup() { return LLTransientFloaterMgr::GLOBAL; }
virtual LLTransientFloaterMgr::ETransientGroup getGroup() override { return LLTransientFloaterMgr::GLOBAL; }
};
#endif /* LL_TRANSIENTDOCKABLEFLOATER_H */