From 48bbdc1c1765ba67e32e0c25a131c9618765e445 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Fri, 14 Aug 2009 20:57:14 +0000 Subject: [PATCH] Fixed broken indentation (greetings to Stefano :-)). git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32396 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/terminal/BasicTerminalBuffer.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/apps/terminal/BasicTerminalBuffer.h b/src/apps/terminal/BasicTerminalBuffer.h index cc1aaf5dc3..36620751d9 100644 --- a/src/apps/terminal/BasicTerminalBuffer.h +++ b/src/apps/terminal/BasicTerminalBuffer.h @@ -83,7 +83,7 @@ public: uint16& attributes) const; void GetStringFromRegion(BString& string, const TermPos& start, - const TermPos& end) const; + const TermPos& end) const; bool FindWord(const TermPos& pos, TerminalCharClassifier* classifier, bool findNonWords, TermPos& start, @@ -96,20 +96,20 @@ public: TermPos& matchEnd) const; // insert chars/lines - inline void InsertChar(UTF8Char c, uint32 attributes); - void InsertChar(UTF8Char c, uint32 width, - uint32 attributes); - inline void InsertChar(const char* c, int32 length, - uint32 attributes); - inline void InsertChar(const char* c, int32 length, - uint32 width, uint32 attributes); + inline void InsertChar(UTF8Char c, uint32 attributes); + void InsertChar(UTF8Char c, uint32 width, + uint32 attributes); + inline void InsertChar(const char* c, int32 length, + uint32 attributes); + inline void InsertChar(const char* c, int32 length, + uint32 width, uint32 attributes); void InsertCR(); void InsertLF(); void SetInsertMode(int flag); void InsertSpace(int32 num); void InsertLines(int32 numLines); - + // delete chars/lines void EraseChars(int32 numChars); void EraseAbove();