diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-06-29 13:53:30 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-06-29 17:34:00 +0200 |
commit | 74cd0d0b281f8df75612bfb600df2eae62c4d21d (patch) | |
tree | bbfb2e37d317ffad49267fe71fd270198fdb81e1 /dbaccess | |
parent | 4c51f2e0dfdddfe0efb4218d2cd1deefd90b6eff (diff) |
loplugin:unusedmethods
Change-Id: I95ab7581dec35b113cb657ce8e5ee27c89c73593
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/153746
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/dlg/DBSetupConnectionPages.cxx | 8 | ||||
-rw-r--r-- | dbaccess/source/ui/dlg/DBSetupConnectionPages.hxx | 2 |
2 files changed, 0 insertions, 10 deletions
diff --git a/dbaccess/source/ui/dlg/DBSetupConnectionPages.cxx b/dbaccess/source/ui/dlg/DBSetupConnectionPages.cxx index 5f9e9fe16a45..22cdefdd6c31 100644 --- a/dbaccess/source/ui/dlg/DBSetupConnectionPages.cxx +++ b/dbaccess/source/ui/dlg/DBSetupConnectionPages.cxx @@ -625,14 +625,6 @@ using namespace ::com::sun::star; impl_setURL( _rURL, true); } - OUString OPostgresConnectionPageSetup::impl_getURL() const - { - // get the pure text - OUString sURL = m_xConnectionURL->GetTextNoPrefix(); - OSL_ENSURE( m_pCollection, "OConnectionHelper::impl_getURL: have no interpreter for the URLs!" ); - return sURL; - } - // 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 776337ebacb1..909cfede5806 100644 --- a/dbaccess/source/ui/dlg/DBSetupConnectionPages.hxx +++ b/dbaccess/source/ui/dlg/DBSetupConnectionPages.hxx @@ -248,9 +248,7 @@ namespace dbaui void impl_setURL( std::u16string_view _rURL, bool _bPrefix ); void setURLNoPrefix( std::u16string_view _rURL ); void setURL( std::u16string_view _rURL ); - OUString impl_getURL() const; bool commitURL(); - }; |