summaryrefslogtreecommitdiff
path: root/indra/newview/llgltffolderitem.h
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/llgltffolderitem.h')
-rw-r--r--indra/newview/llgltffolderitem.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/indra/newview/llgltffolderitem.h b/indra/newview/llgltffolderitem.h
index 83c6449f96..89d90c81cc 100644
--- a/indra/newview/llgltffolderitem.h
+++ b/indra/newview/llgltffolderitem.h
@@ -59,8 +59,8 @@ public:
std::string getSearchableUUIDString() const override { return std::string(); }
LLPointer<LLUIImage> getIcon() const override { return pIcon; }
- LLPointer<LLUIImage> getIconOpen() const { return getIcon(); }
- LLPointer<LLUIImage> getIconOverlay() const { return NULL; }
+ LLPointer<LLUIImage> getIconOpen() const override { return getIcon(); }
+ LLPointer<LLUIImage> getIconOverlay() const override { return NULL; }
LLFontGL::StyleFlags getLabelStyle() const override { return LLFontGL::NORMAL; }
std::string getLabelSuffix() const override { return std::string(); }
@@ -71,7 +71,7 @@ public:
void navigateToFolder(bool new_window = false, bool change_mode = false) override {}
- bool isItemWearable() const { return false; }
+ bool isItemWearable() const override { return false; }
bool isItemRenameable() const override { return false; }
bool renameItem(const std::string& new_name) override { return false; }
@@ -86,7 +86,7 @@ public:
bool isItemCopyable(bool can_copy_as_link = true) const override { return false; }
bool copyToClipboard() const override { return false; }
bool cutToClipboard() override { return false; }
- bool isCutToClipboard() { return false; }
+ bool isCutToClipboard() override { return false; }
bool isClipboardPasteable() const override { return false; }
void pasteFromClipboard() override {}
@@ -125,4 +125,4 @@ private:
S32 mItemId = -1;
};
-#endif LL_LLGLTFFOLDERITEM_H
+#endif