aboutsummaryrefslogtreecommitdiff
path: root/src/streamstack.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/streamstack.cpp')
-rw-r--r--src/streamstack.cpp4
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
12Bu::StreamStack::~StreamStack() 12Bu::StreamStack::~StreamStack()
13{ 13{
14 clearStack(); 14 clear();
15} 15}
16 16
17bool Bu::StreamStack::isEmpty() 17bool 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
35void Bu::StreamStack::clearStack() 35void 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 {