diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-11-14 21:14:23 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-11-17 20:10:50 +0000 |
commit | 3b238706737c36d4772ec3f95b52fbde978bf20a (patch) | |
tree | 592679f982c113a495bdf81f5f4787cc99688fc8 | |
parent | f44928cbd51fc7d08e2b81dcdf837650cd215847 (diff) |
callcatcher: remove another layer of binfilter-released methods
Change-Id: Id5bedd660b2ada460ffc48ce28d4f8ab9cd89226
-rw-r--r-- | sot/inc/sot/stg.hxx | 1 | ||||
-rw-r--r-- | sot/source/sdstor/ucbstorage.cxx | 27 | ||||
-rw-r--r-- | svtools/inc/svtools/treelistentry.hxx | 3 | ||||
-rw-r--r-- | svtools/source/contnr/treelistentry.cxx | 10 | ||||
-rw-r--r-- | tools/inc/tools/inetmime.hxx | 3 | ||||
-rw-r--r-- | tools/source/inet/inetmime.cxx | 31 | ||||
-rwxr-xr-x | unusedcode.easy | 5 |
7 files changed, 0 insertions, 80 deletions
diff --git a/sot/inc/sot/stg.hxx b/sot/inc/sot/stg.hxx index 711dce29cc77..98a09cecad50 100644 --- a/sot/inc/sot/stg.hxx +++ b/sot/inc/sot/stg.hxx @@ -351,7 +351,6 @@ public: virtual sal_Bool ValidateMode( StreamMode ) const; virtual const SvStream* GetSvStream() 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 ); UCBStorageElement_Impl* FindElement_Impl( const String& rName ) const; diff --git a/sot/source/sdstor/ucbstorage.cxx b/sot/source/sdstor/ucbstorage.cxx index c0a0021fe024..ff081f2bf70d 100644 --- a/sot/source/sdstor/ucbstorage.cxx +++ b/sot/source/sdstor/ucbstorage.cxx @@ -3253,31 +3253,4 @@ String UCBStorage::CreateLinkFile( const String& rName ) 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: */ diff --git a/svtools/inc/svtools/treelistentry.hxx b/svtools/inc/svtools/treelistentry.hxx index b3df912149bf..50734ab044d4 100644 --- a/svtools/inc/svtools/treelistentry.hxx +++ b/svtools/inc/svtools/treelistentry.hxx @@ -81,9 +81,6 @@ public: bool HasChildListPos() const; sal_uLong GetChildListPos() const; - SvTreeListEntries& GetChildEntries(); - const SvTreeListEntries& GetChildEntries() const; - void Clone(SvTreeListEntry* pSource); size_t ItemCount() const; diff --git a/svtools/source/contnr/treelistentry.cxx b/svtools/source/contnr/treelistentry.cxx index c34b53c680b2..f375b5908740 100644 --- a/svtools/source/contnr/treelistentry.cxx +++ b/svtools/source/contnr/treelistentry.cxx @@ -106,16 +106,6 @@ sal_uLong SvTreeListEntry::GetChildListPos() const return ( nListPos & 0x7fffffff ); } -SvTreeListEntries& SvTreeListEntry::GetChildEntries() -{ - return maChildren; -} - -const SvTreeListEntries& SvTreeListEntry::GetChildEntries() const -{ - return maChildren; -} - void SvTreeListEntry::Clone(SvTreeListEntry* pSource) { nListPos &= 0x80000000; diff --git a/tools/inc/tools/inetmime.hxx b/tools/inc/tools/inetmime.hxx index 296a08e50a9a..53f097f60c6e 100644 --- a/tools/inc/tools/inetmime.hxx +++ b/tools/inc/tools/inetmime.hxx @@ -414,9 +414,6 @@ public: pBegin, 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, const sal_Unicode * pEnd); diff --git a/tools/source/inet/inetmime.cxx b/tools/source/inet/inetmime.cxx index 834583e01c67..2aa1a7ee005c 100644 --- a/tools/source/inet/inetmime.cxx +++ b/tools/source/inet/inetmime.cxx @@ -513,37 +513,6 @@ const sal_Unicode * INetMIME::skipLinearWhiteSpace(const sal_Unicode * 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 const sal_Unicode * INetMIME::skipComment(const sal_Unicode * pBegin, const sal_Unicode * pEnd) { diff --git a/unusedcode.easy b/unusedcode.easy index 826a596fc877..52a55b5f8609 100755 --- a/unusedcode.easy +++ b/unusedcode.easy @@ -12,8 +12,6 @@ ScVbaFormat<ooo::vba::excel::XStyle>::setAddIndent(com::sun::star::uno::Any cons String::String(unsigned short) SvListView::GetModel() const SvTreeList::GetChildIterators(SvTreeListEntry const*) const -SvTreeListEntry::GetChildEntries() -SvTreeListEntry::GetChildEntries() const SvtGraphicStroke::toString() const TextEngine::GetLeftMargin() 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::setLocalizedPropertyValue(boost::shared_ptr<comphelper::ConfigurationChanges> const&, rtl::OUString const&, com::sun::star::uno::Any const&) const connectivity::file::OStatement_Base::reset() -connectivity::mork::MQueryHelper::next() -connectivity::mork::MQueryHelperResultEntry::insert(rtl::OString const&, rtl::OUString&) connectivity::mork::OColumnAlias::OColumnAlias() connectivity::sdbcx::OGroup::OGroup(rtl::OUString const&, 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() jfw_plugin::VendorBase::createInstance() oox::drawingml::TextListStyle::dump() const |