diff options
author | Mike Buland <eichlan@xagasoft.com> | 2010-09-24 23:02:45 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2010-09-24 23:02:45 +0000 |
commit | 0bb8c5962e93fae4a2542d57efe8e87d30d8f0fb (patch) | |
tree | 2ec2ad7d2d91c5c49b8c040a6edeccae7ac74f1c /src/streamstack.cpp | |
parent | d210c301bc3e8867cad883e80663208474cc1ea5 (diff) | |
download | libbu++-0bb8c5962e93fae4a2542d57efe8e87d30d8f0fb.tar.gz libbu++-0bb8c5962e93fae4a2542d57efe8e87d30d8f0fb.tar.bz2 libbu++-0bb8c5962e93fae4a2542d57efe8e87d30d8f0fb.tar.xz libbu++-0bb8c5962e93fae4a2542d57efe8e87d30d8f0fb.zip |
Bu::StreamStack had a stupidly named function.
Diffstat (limited to '')
-rw-r--r-- | src/streamstack.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/streamstack.cpp b/src/streamstack.cpp index c7f8af5..011c721 100644 --- a/src/streamstack.cpp +++ b/src/streamstack.cpp | |||
@@ -11,7 +11,7 @@ Bu::StreamStack::StreamStack( Bu::Stream *pStream ) | |||
11 | 11 | ||
12 | Bu::StreamStack::~StreamStack() | 12 | Bu::StreamStack::~StreamStack() |
13 | { | 13 | { |
14 | clearStack(); | 14 | clear(); |
15 | } | 15 | } |
16 | 16 | ||
17 | bool Bu::StreamStack::isEmpty() | 17 | bool Bu::StreamStack::isEmpty() |
@@ -32,7 +32,7 @@ void Bu::StreamStack::setStream( Bu::Stream *pStream ) | |||
32 | lFilts.prepend( pStream ); | 32 | lFilts.prepend( pStream ); |
33 | } | 33 | } |
34 | 34 | ||
35 | void Bu::StreamStack::clearStack() | 35 | void Bu::StreamStack::clear() |
36 | { | 36 | { |
37 | for( FilterList::iterator i = lFilts.begin(); i; i++ ) | 37 | for( FilterList::iterator i = lFilts.begin(); i; i++ ) |
38 | { | 38 | { |