diff options
Diffstat (limited to 'src/streamstack.cpp')
-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 | { |