diff options
author | Cinder <cinder.roxley@phoenixviewer.com> | 2014-05-14 14:08:24 -0600 |
---|---|---|
committer | Cinder <cinder.roxley@phoenixviewer.com> | 2014-05-14 14:08:24 -0600 |
commit | e776b600b1a76fcbe316041fc6fa8e885464daee (patch) | |
tree | 79982fcb22e40343969b789ff8f175fae9b40632 /indra/llui/lltexteditor.h | |
parent | c073bad6b29fa3c5167c28c286171a1bda9b5e4a (diff) |
Refactor more script editor properties away from LLTextEditor to LLScriptEditor
Diffstat (limited to 'indra/llui/lltexteditor.h')
-rwxr-xr-x | indra/llui/lltexteditor.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/indra/llui/lltexteditor.h b/indra/llui/lltexteditor.h index 404275026c..2408613824 100755 --- a/indra/llui/lltexteditor.h +++ b/indra/llui/lltexteditor.h @@ -58,7 +58,6 @@ public: Optional<bool> embedded_items, ignore_tab, - show_line_numbers, commit_on_focus_lost, show_context_menu, enable_tooltip_paste, @@ -279,11 +278,11 @@ protected: protected: LLUIColor mDefaultColor; - BOOL mShowLineNumbers; bool mAutoIndent; bool mParseOnTheFly; void updateLinkSegments(); + class LLViewBorder* mBorder; private: // @@ -293,8 +292,6 @@ private: void cleanStringForPaste(LLWString & clean_string); void pasteTextWithLinebreaks(LLWString & clean_string); - void drawLineNumbers(); - void onKeyStroke(); // Concrete TextCmd sub-classes used by the LLTextEditor base class @@ -303,8 +300,6 @@ private: class TextCmdOverwriteChar; class TextCmdRemove; - class LLViewBorder* mBorder; - BOOL mBaseDocIsPristine; TextCmd* mPristineCmd; |