Kaydet (Commit) 7ff0a5b0 authored tarafından Caolán McNamara's avatar Caolán McNamara

callcatcher: remove unused NextChannel

üst e2160782
...@@ -103,7 +103,6 @@ public: ...@@ -103,7 +103,6 @@ public:
void Read(rtl::OString&, short = 0); void Read(rtl::OString&, short = 0);
char Read(); char Read();
void Write(const rtl::OString&, short = 0); void Write(const rtl::OString&, short = 0);
short NextChannel();
// 0 == bad channel or no SvStream (nChannel=0..CHANNELS-1) // 0 == bad channel or no SvStream (nChannel=0..CHANNELS-1)
SbiStream* GetStream( short nChannel ) const; SbiStream* GetStream( short nChannel ) const;
void CloseAll(); // JSM void CloseAll(); // JSM
......
...@@ -876,17 +876,6 @@ void SbiIoSystem::Write(const rtl::OString& rBuf, short n) ...@@ -876,17 +876,6 @@ void SbiIoSystem::Write(const rtl::OString& rBuf, short n)
nError = pChan[ nChan ]->Write( rBuf, n ); nError = pChan[ nChan ]->Write( rBuf, n );
} }
short SbiIoSystem::NextChannel()
{
for( short i = 1; i < CHANNELS; i++ )
{
if( !pChan[ i ] )
return i;
}
nError = SbERR_TOO_MANY_FILES;
return CHANNELS;
}
// nChannel == 0..CHANNELS-1 // nChannel == 0..CHANNELS-1
SbiStream* SbiIoSystem::GetStream( short nChannel ) const SbiStream* SbiIoSystem::GetStream( short nChannel ) const
......
...@@ -130,7 +130,6 @@ SanExtensionImpl::extractCertExt() ...@@ -130,7 +130,6 @@ SanExtensionImpl::extractCertExt()
SanExtensionImpl::setCertExtn(com::sun::star::uno::Sequence<signed char>, com::sun::star::uno::Sequence<signed char>, unsigned char) SanExtensionImpl::setCertExtn(com::sun::star::uno::Sequence<signed char>, com::sun::star::uno::Sequence<signed char>, unsigned char)
SanExtensionImpl::setCertExtn(unsigned char*, unsigned int, unsigned char*, unsigned int, unsigned char) SanExtensionImpl::setCertExtn(unsigned char*, unsigned int, unsigned char*, unsigned int, unsigned char)
SbiExpression::VBA_Imp() SbiExpression::VBA_Imp()
SbiIoSystem::NextChannel()
SbiRuntime::GetParams() SbiRuntime::GetParams()
SbiSymPool::Clear() SbiSymPool::Clear()
SbxDecimal::getByte(unsigned char&) SbxDecimal::getByte(unsigned char&)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment