diff options
Diffstat (limited to 'src/client.cpp')
-rw-r--r-- | src/client.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/client.cpp b/src/client.cpp index 789cda4..e6f60e9 100644 --- a/src/client.cpp +++ b/src/client.cpp | |||
@@ -185,11 +185,6 @@ size_t Bu::Client::peek( void *pData, int nBytes, int nOffset ) | |||
185 | return qbRead.peek( pData, nBytes, nOffset ); | 185 | return qbRead.peek( pData, nBytes, nOffset ); |
186 | } | 186 | } |
187 | 187 | ||
188 | void Bu::Client::seek( int nBytes ) | ||
189 | { | ||
190 | return qbRead.seek( nBytes ); | ||
191 | } | ||
192 | |||
193 | long Bu::Client::getInputSize() | 188 | long Bu::Client::getInputSize() |
194 | { | 189 | { |
195 | return qbRead.getSize(); | 190 | return qbRead.getSize(); |
@@ -243,6 +238,7 @@ long Bu::Client::tell() | |||
243 | 238 | ||
244 | void Bu::Client::seek( long offset ) | 239 | void Bu::Client::seek( long offset ) |
245 | { | 240 | { |
241 | return qbRead.seek( offset ); | ||
246 | } | 242 | } |
247 | 243 | ||
248 | void Bu::Client::setPos( long pos ) | 244 | void Bu::Client::setPos( long pos ) |