diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-05-19 13:35:31 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-05-20 12:55:07 +0200 |
commit | 8270eb5d5600cc84dbf5f0e339f90c4519ef88bb (patch) | |
tree | 6253324edd37e5b13c17436a6378ee58ba6a723b /dbaccess/source/ui/dlg | |
parent | 4f3dd930324552aec40b333d750ec7b95ff03c26 (diff) |
loplugin:unusedmethods
Change-Id: Ief95f111350808f010539bb733a553007d30a9df
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/152006
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'dbaccess/source/ui/dlg')
-rw-r--r-- | dbaccess/source/ui/dlg/DBSetupConnectionPages.cxx | 11 | ||||
-rw-r--r-- | dbaccess/source/ui/dlg/DBSetupConnectionPages.hxx | 2 |
2 files changed, 0 insertions, 13 deletions
diff --git a/dbaccess/source/ui/dlg/DBSetupConnectionPages.cxx b/dbaccess/source/ui/dlg/DBSetupConnectionPages.cxx index 3537eddc9038..2c1846495a7c 100644 --- a/dbaccess/source/ui/dlg/DBSetupConnectionPages.cxx +++ b/dbaccess/source/ui/dlg/DBSetupConnectionPages.cxx @@ -651,11 +651,6 @@ using namespace ::com::sun::star; impl_setURL( _rURL, true); } - OUString OPostgresConnectionPageSetup::getURLNoPrefix( ) const - { - return impl_getURL(); - } - OUString OPostgresConnectionPageSetup::impl_getURL() const { // get the pure text @@ -664,12 +659,6 @@ using namespace ::com::sun::star; return sURL; } - IMPL_LINK_NOARG(OPostgresConnectionPageSetup, OnEditModified, weld::Entry&, void) - { - SetRoadmapStateValue(true); - callModifiedHdl(); - } - // OMySQLJDBCConnectionPageSetup OJDBCConnectionPageSetup::OJDBCConnectionPageSetup(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rCoreAttrs) : OConnectionTabPageSetup(pPage, pController, "dbaccess/ui/jdbcconnectionpage.ui", "JDBCConnectionPage", rCoreAttrs, diff --git a/dbaccess/source/ui/dlg/DBSetupConnectionPages.hxx b/dbaccess/source/ui/dlg/DBSetupConnectionPages.hxx index 15904be754f0..cd5d74156d4b 100644 --- a/dbaccess/source/ui/dlg/DBSetupConnectionPages.hxx +++ b/dbaccess/source/ui/dlg/DBSetupConnectionPages.hxx @@ -232,7 +232,6 @@ namespace dbaui ::dbaccess::ODsnTypeCollection* m_pCollection; private: - DECL_LINK(OnEditModified, weld::Entry&, void); virtual bool FillItemSet( SfxItemSet* _rCoreAttrs ) override; virtual void implInitControls(const SfxItemSet& _rSet, bool _bSaveValue) override; virtual void fillControls(std::vector< std::unique_ptr<ISaveValueWrapper> >& _rControlList) override; @@ -261,7 +260,6 @@ namespace dbaui void impl_setURL( std::u16string_view _rURL, bool _bPrefix ); void setURLNoPrefix( std::u16string_view _rURL ); void setURL( std::u16string_view _rURL ); - OUString getURLNoPrefix( ) const; OUString impl_getURL() const; bool commitURL(); |