aboutsummaryrefslogtreecommitdiff
path: root/src/stable/tafcomment.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2012-11-05 22:41:51 +0000
committerMike Buland <eichlan@xagasoft.com>2012-11-05 22:41:51 +0000
commitec05778d5718a7912e506764d443a78d6a6179e3 (patch)
tree78a9a01532180030c095acefc45763f07c14edb8 /src/stable/tafcomment.cpp
parentb20414ac1fe80a71a90601f4cd1767fa7014a9ba (diff)
downloadlibbu++-ec05778d5718a7912e506764d443a78d6a6179e3.tar.gz
libbu++-ec05778d5718a7912e506764d443a78d6a6179e3.tar.bz2
libbu++-ec05778d5718a7912e506764d443a78d6a6179e3.tar.xz
libbu++-ec05778d5718a7912e506764d443a78d6a6179e3.zip
Converted tabs to spaces with tabconv.
Diffstat (limited to 'src/stable/tafcomment.cpp')
-rw-r--r--src/stable/tafcomment.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/stable/tafcomment.cpp b/src/stable/tafcomment.cpp
index ceda8e3..5168685 100644
--- a/src/stable/tafcomment.cpp
+++ b/src/stable/tafcomment.cpp
@@ -8,16 +8,16 @@
8#include "bu/tafcomment.h" 8#include "bu/tafcomment.h"
9 9
10Bu::TafComment::TafComment( const Bu::TafComment &rSrc ) : 10Bu::TafComment::TafComment( const Bu::TafComment &rSrc ) :
11 TafNode( typeComment ), 11 TafNode( typeComment ),
12 sText( rSrc.sText ), 12 sText( rSrc.sText ),
13 bEOL( rSrc.bEOL ) 13 bEOL( rSrc.bEOL )
14{ 14{
15} 15}
16 16
17Bu::TafComment::TafComment( const Bu::String &sText, bool bEOL ) : 17Bu::TafComment::TafComment( const Bu::String &sText, bool bEOL ) :
18 TafNode( typeComment ), 18 TafNode( typeComment ),
19 sText( sText ), 19 sText( sText ),
20 bEOL( bEOL ) 20 bEOL( bEOL )
21{ 21{
22} 22}
23 23
@@ -27,11 +27,11 @@ Bu::TafComment::~TafComment()
27 27
28const Bu::String &Bu::TafComment::getText() const 28const Bu::String &Bu::TafComment::getText() const
29{ 29{
30 return sText; 30 return sText;
31} 31}
32 32
33bool Bu::TafComment::isEOLStyle() const 33bool Bu::TafComment::isEOLStyle() const
34{ 34{
35 return bEOL; 35 return bEOL;
36} 36}
37 37