Skip to content
Snippets Groups Projects
Verified Commit fded37f4 authored by Xenhat Hex's avatar Xenhat Hex
Browse files

Fix more missing override keywords

parent 6afda538
No related branches found
No related tags found
1 merge request!124Xenhat/fixes/virtual override
......@@ -44,7 +44,7 @@ class LLScriptEditor : public LLTextEditor
virtual ~LLScriptEditor();
// LLView override
virtual void draw();
virtual void draw() override;
BOOL postBuild() override;
void initKeywords();
......@@ -59,8 +59,8 @@ class LLScriptEditor : public LLTextEditor
private:
void drawLineNumbers();
/* virtual */ void updateSegments();
/* virtual */ void drawSelectionBackground();
/* virtual */ void updateSegments() override;
/* virtual */ void drawSelectionBackground() override;
void loadKeywords(const std::string& filename_keywords,
const std::string& filename_colors);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment