diff options
-rw-r--r-- | connectivity/source/drivers/postgresql/pq_xtable.cxx | 7 | ||||
-rw-r--r-- | connectivity/source/drivers/postgresql/pq_xtable.hxx | 4 | ||||
-rw-r--r-- | cui/source/customize/acccfg.cxx | 9 | ||||
-rw-r--r-- | cui/source/dialogs/hltpbase.cxx | 5 | ||||
-rw-r--r-- | cui/source/inc/acccfg.hxx | 4 | ||||
-rw-r--r-- | cui/source/inc/hltpbase.hxx | 2 |
6 files changed, 0 insertions, 31 deletions
diff --git a/connectivity/source/drivers/postgresql/pq_xtable.cxx b/connectivity/source/drivers/postgresql/pq_xtable.cxx index 4b8d4518c1f4..ddc96f61aaa8 100644 --- a/connectivity/source/drivers/postgresql/pq_xtable.cxx +++ b/connectivity/source/drivers/postgresql/pq_xtable.cxx @@ -311,13 +311,6 @@ Any Table::queryInterface( const Type & reqType ) throw (RuntimeException, std:: return ret; } -css::uno::Any Table::getPropertyValue(const OUString& aPropertyName) - throw(css::beans::UnknownPropertyException, css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception) -{ - return ReflectionBase::getPropertyValue( aPropertyName ); -} - - OUString Table::getName( ) throw (css::uno::RuntimeException, std::exception) { Statics & st = getStatics(); diff --git a/connectivity/source/drivers/postgresql/pq_xtable.hxx b/connectivity/source/drivers/postgresql/pq_xtable.hxx index 3ff598c0ed3e..759dddad8a68 100644 --- a/connectivity/source/drivers/postgresql/pq_xtable.hxx +++ b/connectivity/source/drivers/postgresql/pq_xtable.hxx @@ -123,10 +123,6 @@ public: css::lang::IndexOutOfBoundsException, css::uno::RuntimeException, std::exception) override; - // TODO: remove again - virtual css::uno::Any SAL_CALL getPropertyValue(const OUString& aPropertyName) - throw(css::beans::UnknownPropertyException, css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception) override; - // XNamed virtual OUString SAL_CALL getName( ) throw (css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL setName( const OUString& aName ) throw (css::uno::RuntimeException, std::exception) override; diff --git a/cui/source/customize/acccfg.cxx b/cui/source/customize/acccfg.cxx index c3f14d1c6adf..ae7d1cc5d26f 100644 --- a/cui/source/customize/acccfg.cxx +++ b/cui/source/customize/acccfg.cxx @@ -675,15 +675,6 @@ VCL_BUILDER_DECL_FACTORY(SfxAccCfgTabListBox) rRet = VclPtr<SfxAccCfgTabListBox_Impl>::Create(pParent, nWinBits); } -void SfxAccCfgTabListBox_Impl::InitEntry(SvTreeListEntry* pEntry, - const OUString& rText, - const Image& rImage1, - const Image& rImage2, - SvLBoxButtonKind eButtonKind) -{ - SvTabListBox::InitEntry(pEntry, rText, rImage1, rImage2, eButtonKind); -} - SfxAccCfgTabListBox_Impl::~SfxAccCfgTabListBox_Impl() { disposeOnce(); diff --git a/cui/source/dialogs/hltpbase.cxx b/cui/source/dialogs/hltpbase.cxx index 226e7a6a6c62..bb63d88baddc 100644 --- a/cui/source/dialogs/hltpbase.cxx +++ b/cui/source/dialogs/hltpbase.cxx @@ -97,11 +97,6 @@ sal_Int8 SvxHyperURLBox::ExecuteDrop( const ExecuteDropEvent& rEvt ) return nRet; } -void SvxHyperURLBox::Modify() -{ - SvtURLBox::Modify(); -} - //# Hyperlink-Dialog: Tabpages-Baseclass # SvxHyperlinkTabPageBase::SvxHyperlinkTabPageBase ( vcl::Window *pParent, diff --git a/cui/source/inc/acccfg.hxx b/cui/source/inc/acccfg.hxx index 24b92c90c15a..d59cdc06332c 100644 --- a/cui/source/inc/acccfg.hxx +++ b/cui/source/inc/acccfg.hxx @@ -57,10 +57,6 @@ class SfxAccCfgTabListBox_Impl : public SvTabListBox void KeyInput( const KeyEvent &rKEvt ) override; -protected: - virtual void InitEntry(SvTreeListEntry*, const OUString&, const Image&, - const Image&, SvLBoxButtonKind eButtonKind) override; - public: SfxAccCfgTabListBox_Impl(vcl::Window *pParent, WinBits nStyle) : SvTabListBox(pParent, nStyle) diff --git a/cui/source/inc/hltpbase.hxx b/cui/source/inc/hltpbase.hxx index 4f24e11e0d04..642d28129b3c 100644 --- a/cui/source/inc/hltpbase.hxx +++ b/cui/source/inc/hltpbase.hxx @@ -53,8 +53,6 @@ protected: virtual sal_Int8 AcceptDrop( const AcceptDropEvent& rEvt ) override; virtual sal_Int8 ExecuteDrop( const ExecuteDropEvent& rEvt ) override; - virtual void Modify() override; - public: SvxHyperURLBox( vcl::Window* pParent, INetProtocol eSmart = INetProtocol::File ); |