diff options
author | Mike Buland <eichlan@xagasoft.com> | 2012-11-05 22:41:51 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2012-11-05 22:41:51 +0000 |
commit | ec05778d5718a7912e506764d443a78d6a6179e3 (patch) | |
tree | 78a9a01532180030c095acefc45763f07c14edb8 /src/stable/tafcomment.cpp | |
parent | b20414ac1fe80a71a90601f4cd1767fa7014a9ba (diff) | |
download | libbu++-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.cpp | 16 |
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 | ||
10 | Bu::TafComment::TafComment( const Bu::TafComment &rSrc ) : | 10 | Bu::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 | ||
17 | Bu::TafComment::TafComment( const Bu::String &sText, bool bEOL ) : | 17 | Bu::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 | ||
28 | const Bu::String &Bu::TafComment::getText() const | 28 | const Bu::String &Bu::TafComment::getText() const |
29 | { | 29 | { |
30 | return sText; | 30 | return sText; |
31 | } | 31 | } |
32 | 32 | ||
33 | bool Bu::TafComment::isEOLStyle() const | 33 | bool Bu::TafComment::isEOLStyle() const |
34 | { | 34 | { |
35 | return bEOL; | 35 | return bEOL; |
36 | } | 36 | } |
37 | 37 | ||