aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llui/lllineeditor.h
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/llui/lllineeditor.h')
-rw-r--r--linden/indra/llui/lllineeditor.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/linden/indra/llui/lllineeditor.h b/linden/indra/llui/lllineeditor.h
index bf0dcb5..c96e34d 100644
--- a/linden/indra/llui/lllineeditor.h
+++ b/linden/indra/llui/lllineeditor.h
@@ -211,6 +211,8 @@ public:
211 void setEnableLineHistory( BOOL enabled ) { mHaveHistory = enabled; } // switches line history on or off 211 void setEnableLineHistory( BOOL enabled ) { mHaveHistory = enabled; } // switches line history on or off
212 void updateHistory(); // stores current line in history 212 void updateHistory(); // stores current line in history
213 213
214 void setReplaceNewlinesWithSpaces(BOOL replace);
215
214private: 216private:
215 // private helper methods 217 // private helper methods
216 void removeChar(); 218 void removeChar();
@@ -311,6 +313,8 @@ private:
311 // Instances that by default point to the statics but can be overidden in XML. 313 // Instances that by default point to the statics but can be overidden in XML.
312 LLPointer<LLUIImage> mImage; 314 LLPointer<LLUIImage> mImage;
313 315
316 BOOL mReplaceNewlinesWithSpaces; // if false, will replace pasted newlines with paragraph symbol.
317
314 // private helper class 318 // private helper class
315 class LLLineEditorRollback 319 class LLLineEditorRollback
316 { 320 {