diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-09-06 16:20:33 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-09-07 14:05:50 +0200 |
commit | 483ba975b40d99c931c22a63fc85e190922406a7 (patch) | |
tree | f71c380c463b5fae90ead8f44b1a76d2dfee1ca0 /dbaccess | |
parent | c1e1806c9c01d2ac2f62f95dd79cbb2037bc87af (diff) |
remove some unnecessary casts
Change-Id: I16aa2cdc3e92c3ea2661ebf0a528f72cbe193df9
Reviewed-on: https://gerrit.libreoffice.org/78716
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/dlg/RelationDlg.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/ui/dlg/RelationDlg.cxx b/dbaccess/source/ui/dlg/RelationDlg.cxx index 31a672f79454..19cb52e7276c 100644 --- a/dbaccess/source/ui/dlg/RelationDlg.cxx +++ b/dbaccess/source/ui/dlg/RelationDlg.cxx @@ -65,7 +65,7 @@ ORelationDialog::ORelationDialog( OJoinTableView* pParent, get(m_pPB_OK, "ok"); // Copy connection - m_pConnData.reset( static_cast<ORelationTableConnectionData*>(pConnectionData->NewInstance()) ); + m_pConnData.reset( pConnectionData->NewInstance() ); m_pConnData->CopyFrom( *pConnectionData ); Init(m_pConnData); |