summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-03-31 12:49:59 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-03-31 15:05:56 +0200
commitbbf326364ce757bee0db326ef2c41602a8a05a6c (patch)
treefcf4a0ad22607fd0e07c4facb042dfe0ce08ba0a /dbaccess/source/ui
parent4162339adbb81fc09e6ee405e8dc75bb2321c365 (diff)
loplugin:unusedmethods
Change-Id: Idca950f341a8a0521ea2fa3d705164fcf2481027 Reviewed-on: https://gerrit.libreoffice.org/52183 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'dbaccess/source/ui')
-rw-r--r--dbaccess/source/ui/querydesign/QTableConnectionData.cxx6
-rw-r--r--dbaccess/source/ui/querydesign/QTableConnectionData.hxx3
2 files changed, 0 insertions, 9 deletions
diff --git a/dbaccess/source/ui/querydesign/QTableConnectionData.cxx b/dbaccess/source/ui/querydesign/QTableConnectionData.cxx
index c7de9ce6acb0..ef899a068c0b 100644
--- a/dbaccess/source/ui/querydesign/QTableConnectionData.cxx
+++ b/dbaccess/source/ui/querydesign/QTableConnectionData.cxx
@@ -55,12 +55,6 @@ OQueryTableConnectionData::~OQueryTableConnectionData()
{
}
-OConnectionLineDataRef OQueryTableConnectionData::CreateLineDataObj()
-{
- // no specializing of LineDatas, so it is an instance of standard class
- return new OConnectionLineData();
-}
-
void OQueryTableConnectionData::CopyFrom(const OTableConnectionData& rSource)
{
// same as in base class, use of (non-virtual) operator=
diff --git a/dbaccess/source/ui/querydesign/QTableConnectionData.hxx b/dbaccess/source/ui/querydesign/QTableConnectionData.hxx
index 441276b05b66..179791142f66 100644
--- a/dbaccess/source/ui/querydesign/QTableConnectionData.hxx
+++ b/dbaccess/source/ui/querydesign/QTableConnectionData.hxx
@@ -32,9 +32,6 @@ namespace dbaui
EJoinType m_eJoinType;
bool m_bNatural;
- // for creation and duplication of lines of own type
- OConnectionLineDataRef CreateLineDataObj();
-
OQueryTableConnectionData& operator=( const OQueryTableConnectionData& rConnData );
public:
OQueryTableConnectionData();