callcatcher: remove another layer of binfilter-released methods
Change-Id: Id5bedd660b2ada460ffc48ce28d4f8ab9cd89226
This commit is contained in:
@@ -351,7 +351,6 @@ public:
|
|||||||
virtual sal_Bool ValidateMode( StreamMode ) const;
|
virtual sal_Bool ValidateMode( StreamMode ) const;
|
||||||
virtual const SvStream* GetSvStream() const;
|
virtual const SvStream* GetSvStream() const;
|
||||||
virtual sal_Bool Equals( const BaseStorage& rStream ) const;
|
virtual sal_Bool Equals( const BaseStorage& rStream ) const;
|
||||||
sal_Bool SetProperty( const String& rName, const ::com::sun::star::uno::Any& rValue );
|
|
||||||
sal_Bool GetProperty( const String& rEleName, const String& rName, ::com::sun::star::uno::Any& rValue );
|
sal_Bool GetProperty( const String& rEleName, const String& rName, ::com::sun::star::uno::Any& rValue );
|
||||||
|
|
||||||
UCBStorageElement_Impl* FindElement_Impl( const String& rName ) const;
|
UCBStorageElement_Impl* FindElement_Impl( const String& rName ) const;
|
||||||
|
@@ -3253,31 +3253,4 @@ String UCBStorage::CreateLinkFile( const String& rName )
|
|||||||
return String();
|
return String();
|
||||||
}
|
}
|
||||||
|
|
||||||
sal_Bool UCBStorage::SetProperty( const String& rName, const ::com::sun::star::uno::Any& rValue )
|
|
||||||
{
|
|
||||||
if ( rName.CompareToAscii("Title") == COMPARE_EQUAL )
|
|
||||||
return sal_False;
|
|
||||||
|
|
||||||
if ( rName.CompareToAscii("MediaType") == COMPARE_EQUAL )
|
|
||||||
{
|
|
||||||
::rtl::OUString aTmp;
|
|
||||||
rValue >>= aTmp;
|
|
||||||
pImp->m_aContentType = aTmp;
|
|
||||||
}
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
if ( pImp->GetContent() )
|
|
||||||
{
|
|
||||||
pImp->m_pContent->setPropertyValue( rName, rValue );
|
|
||||||
return sal_True;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
catch (const Exception&)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
return sal_False;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|
||||||
|
@@ -81,9 +81,6 @@ public:
|
|||||||
bool HasChildListPos() const;
|
bool HasChildListPos() const;
|
||||||
sal_uLong GetChildListPos() const;
|
sal_uLong GetChildListPos() const;
|
||||||
|
|
||||||
SvTreeListEntries& GetChildEntries();
|
|
||||||
const SvTreeListEntries& GetChildEntries() const;
|
|
||||||
|
|
||||||
void Clone(SvTreeListEntry* pSource);
|
void Clone(SvTreeListEntry* pSource);
|
||||||
|
|
||||||
size_t ItemCount() const;
|
size_t ItemCount() const;
|
||||||
|
@@ -106,16 +106,6 @@ sal_uLong SvTreeListEntry::GetChildListPos() const
|
|||||||
return ( nListPos & 0x7fffffff );
|
return ( nListPos & 0x7fffffff );
|
||||||
}
|
}
|
||||||
|
|
||||||
SvTreeListEntries& SvTreeListEntry::GetChildEntries()
|
|
||||||
{
|
|
||||||
return maChildren;
|
|
||||||
}
|
|
||||||
|
|
||||||
const SvTreeListEntries& SvTreeListEntry::GetChildEntries() const
|
|
||||||
{
|
|
||||||
return maChildren;
|
|
||||||
}
|
|
||||||
|
|
||||||
void SvTreeListEntry::Clone(SvTreeListEntry* pSource)
|
void SvTreeListEntry::Clone(SvTreeListEntry* pSource)
|
||||||
{
|
{
|
||||||
nListPos &= 0x80000000;
|
nListPos &= 0x80000000;
|
||||||
|
@@ -414,9 +414,6 @@ public:
|
|||||||
pBegin,
|
pBegin,
|
||||||
const sal_Unicode * pEnd);
|
const sal_Unicode * pEnd);
|
||||||
|
|
||||||
static const sal_Char * skipComment(const sal_Char * pBegin,
|
|
||||||
const sal_Char * pEnd);
|
|
||||||
|
|
||||||
static const sal_Unicode * skipComment(const sal_Unicode * pBegin,
|
static const sal_Unicode * skipComment(const sal_Unicode * pBegin,
|
||||||
const sal_Unicode * pEnd);
|
const sal_Unicode * pEnd);
|
||||||
|
|
||||||
|
@@ -512,37 +512,6 @@ const sal_Unicode * INetMIME::skipLinearWhiteSpace(const sal_Unicode * pBegin,
|
|||||||
return pBegin;
|
return pBegin;
|
||||||
}
|
}
|
||||||
|
|
||||||
// static
|
|
||||||
const sal_Char * INetMIME::skipComment(const sal_Char * pBegin,
|
|
||||||
const sal_Char * pEnd)
|
|
||||||
{
|
|
||||||
DBG_ASSERT(pBegin && pBegin <= pEnd,
|
|
||||||
"INetMIME::skipComment(): Bad sequence");
|
|
||||||
|
|
||||||
if (pBegin != pEnd && *pBegin == '(')
|
|
||||||
{
|
|
||||||
sal_uInt32 nLevel = 0;
|
|
||||||
for (const sal_Char * p = pBegin; p != pEnd;)
|
|
||||||
switch (*p++)
|
|
||||||
{
|
|
||||||
case '(':
|
|
||||||
++nLevel;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case ')':
|
|
||||||
if (--nLevel == 0)
|
|
||||||
return p;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case '\\':
|
|
||||||
if (p != pEnd)
|
|
||||||
++p;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return pBegin;
|
|
||||||
}
|
|
||||||
|
|
||||||
// static
|
// static
|
||||||
const sal_Unicode * INetMIME::skipComment(const sal_Unicode * pBegin,
|
const sal_Unicode * INetMIME::skipComment(const sal_Unicode * pBegin,
|
||||||
const sal_Unicode * pEnd)
|
const sal_Unicode * pEnd)
|
||||||
|
@@ -12,8 +12,6 @@ ScVbaFormat<ooo::vba::excel::XStyle>::setAddIndent(com::sun::star::uno::Any cons
|
|||||||
String::String(unsigned short)
|
String::String(unsigned short)
|
||||||
SvListView::GetModel() const
|
SvListView::GetModel() const
|
||||||
SvTreeList::GetChildIterators(SvTreeListEntry const*) const
|
SvTreeList::GetChildIterators(SvTreeListEntry const*) const
|
||||||
SvTreeListEntry::GetChildEntries()
|
|
||||||
SvTreeListEntry::GetChildEntries() const
|
|
||||||
SvtGraphicStroke::toString() const
|
SvtGraphicStroke::toString() const
|
||||||
TextEngine::GetLeftMargin() const
|
TextEngine::GetLeftMargin() const
|
||||||
ThumbnailViewItemAcc::FireAccessibleEvent(short, com::sun::star::uno::Any const&, com::sun::star::uno::Any const&)
|
ThumbnailViewItemAcc::FireAccessibleEvent(short, com::sun::star::uno::Any const&, com::sun::star::uno::Any const&)
|
||||||
@@ -45,12 +43,9 @@ comphelper::detail::ConfigurationWrapper::getGroupReadWrite(boost::shared_ptr<co
|
|||||||
comphelper::detail::ConfigurationWrapper::getLocalizedPropertyValue(rtl::OUString const&) const
|
comphelper::detail::ConfigurationWrapper::getLocalizedPropertyValue(rtl::OUString const&) const
|
||||||
comphelper::detail::ConfigurationWrapper::setLocalizedPropertyValue(boost::shared_ptr<comphelper::ConfigurationChanges> const&, rtl::OUString const&, com::sun::star::uno::Any const&) const
|
comphelper::detail::ConfigurationWrapper::setLocalizedPropertyValue(boost::shared_ptr<comphelper::ConfigurationChanges> const&, rtl::OUString const&, com::sun::star::uno::Any const&) const
|
||||||
connectivity::file::OStatement_Base::reset()
|
connectivity::file::OStatement_Base::reset()
|
||||||
connectivity::mork::MQueryHelper::next()
|
|
||||||
connectivity::mork::MQueryHelperResultEntry::insert(rtl::OString const&, rtl::OUString&)
|
|
||||||
connectivity::mork::OColumnAlias::OColumnAlias()
|
connectivity::mork::OColumnAlias::OColumnAlias()
|
||||||
connectivity::sdbcx::OGroup::OGroup(rtl::OUString const&, unsigned char)
|
connectivity::sdbcx::OGroup::OGroup(rtl::OUString const&, unsigned char)
|
||||||
connectivity::sdbcx::OGroup::OGroup(unsigned char)
|
connectivity::sdbcx::OGroup::OGroup(unsigned char)
|
||||||
dbtools::getConnection(rtl::OUString const&, rtl::OUString const&, rtl::OUString const&, com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&)
|
|
||||||
framework::OReadMenuDocumentHandler::getServiceFactory()
|
framework::OReadMenuDocumentHandler::getServiceFactory()
|
||||||
jfw_plugin::VendorBase::createInstance()
|
jfw_plugin::VendorBase::createInstance()
|
||||||
oox::drawingml::TextListStyle::dump() const
|
oox::drawingml::TextListStyle::dump() const
|
||||||
|
Reference in New Issue
Block a user