aboutsummaryrefslogtreecommitdiff
path: root/src/filter.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2009-07-31 20:51:28 +0000
committerMike Buland <eichlan@xagasoft.com>2009-07-31 20:51:28 +0000
commitfbb30d35cfa10bf36d4ecb2d0eb5971c24aab26a (patch)
tree4631e5b990624694b3576b037500603abce7ab8a /src/filter.cpp
parent17ec138bb159df52fb07f2f3ba47816d58cc194e (diff)
downloadlibbu++-fbb30d35cfa10bf36d4ecb2d0eb5971c24aab26a.tar.gz
libbu++-fbb30d35cfa10bf36d4ecb2d0eb5971c24aab26a.tar.bz2
libbu++-fbb30d35cfa10bf36d4ecb2d0eb5971c24aab26a.tar.xz
libbu++-fbb30d35cfa10bf36d4ecb2d0eb5971c24aab26a.zip
I switched the Bu::Stream::isEOS function to be named Bu::Stream::isEos, and
also made sure the copyright is at the top of all the files, it's been too long. Anyway, this may effect some code, but not much, and it's an easy enough fix.
Diffstat (limited to 'src/filter.cpp')
-rw-r--r--src/filter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/filter.cpp b/src/filter.cpp
index 771cf0d..6938c02 100644
--- a/src/filter.cpp
+++ b/src/filter.cpp
@@ -42,9 +42,9 @@ void Bu::Filter::setPosEnd( long pos )
42 rNext.setPosEnd( pos ); 42 rNext.setPosEnd( pos );
43} 43}
44 44
45bool Bu::Filter::isEOS() 45bool Bu::Filter::isEos()
46{ 46{
47 return rNext.isEOS(); 47 return rNext.isEos();
48} 48}
49 49
50bool Bu::Filter::isOpen() 50bool Bu::Filter::isOpen()