diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-08-16 20:23:50 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-08-17 16:31:11 +0200 |
commit | d30ab819b80e67119e17d3e4243cab88c508ebae (patch) | |
tree | 89ae80196607983dd43645917639e5779c5a9018 /include | |
parent | cd963fe2f8607dc829a529adfe3a8a7464835070 (diff) |
tdf#125340 transport preferred dialog parent down the migration dialog
Change-Id: Icb7bab35eac3ae08fb82d73f559ef161dd1820c3
Reviewed-on: https://gerrit.libreoffice.org/77606
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/connectivity/dbtools.hxx | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/include/connectivity/dbtools.hxx b/include/connectivity/dbtools.hxx index baf1cb8ef8fa..f77d02181356 100644 --- a/include/connectivity/dbtools.hxx +++ b/include/connectivity/dbtools.hxx @@ -141,7 +141,8 @@ namespace dbtools OOO_DLLPUBLIC_DBTOOLS css::uno::Reference< css::sdbc::XConnection> connectRowset( const css::uno::Reference< css::sdbc::XRowSet>& _rxRowSet, - const css::uno::Reference< css::uno::XComponentContext>& _rxContext + const css::uno::Reference< css::uno::XComponentContext>& _rxContext, + const css::uno::Reference< css::awt::XWindow>& _rxParent ); /** ensures that a row set has a valid ActiveConnection, if possible @@ -164,7 +165,8 @@ namespace dbtools */ OOO_DLLPUBLIC_DBTOOLS SharedConnection ensureRowSetConnection( const css::uno::Reference< css::sdbc::XRowSet>& _rxRowSet, - const css::uno::Reference< css::uno::XComponentContext>& _rxContext + const css::uno::Reference< css::uno::XComponentContext>& _rxContext, + const css::uno::Reference< css::awt::XWindow>& _rxParent ); /** returns the connection the RowSet is currently working with (which is the ActiveConnection property) @@ -176,7 +178,8 @@ namespace dbtools const OUString& _rDataSourceName, const OUString& _rUser, const OUString& _rPwd, - const css::uno::Reference< css::uno::XComponentContext>& _rxContext); + const css::uno::Reference< css::uno::XComponentContext>& _rxContext, + const css::uno::Reference< css::awt::XWindow>& _rxParent); /** determines whether the given component is part of a document which is an embedded database @@ -400,7 +403,8 @@ namespace dbtools */ OOO_DLLPUBLIC_DBTOOLS css::uno::Reference< css::sdb::XSingleSelectQueryComposer > getCurrentSettingsComposer( const css::uno::Reference< css::beans::XPropertySet>& _rxRowSetProps, - const css::uno::Reference< css::uno::XComponentContext>& _rxContext + const css::uno::Reference< css::uno::XComponentContext>& _rxContext, + const css::uno::Reference< css::awt::XWindow>& _rxParent ); /** transfer and translate properties between two FormComponents |