diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-05-09 16:34:33 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-05-10 10:01:13 +0200 |
commit | 1156f981ac4557737dd915e89e11abaa61e29f14 (patch) | |
tree | 86e847ba365f478bb74d3fc4e3785689d8b45c6f /dbaccess | |
parent | 0dc47739176493ded49b665c5fdfe0fe8fff39c1 (diff) |
an is used before a vowel sound
not before vowels with a consonant sound so its a url not an url
Change-Id: Ic27ff3bee67469284d460c31ced6f63cb3633db2
Reviewed-on: https://gerrit.libreoffice.org/72062
Reviewed-by: Jens Carl <j.carl43@gmx.de>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/core/dataaccess/databasedocument.cxx | 2 | ||||
-rw-r--r-- | dbaccess/source/filter/xml/dbloader2.cxx | 4 | ||||
-rw-r--r-- | dbaccess/source/ui/browser/exsrcbrw.cxx | 2 | ||||
-rw-r--r-- | dbaccess/source/ui/dlg/ConnectionHelper.cxx | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/dbaccess/source/core/dataaccess/databasedocument.cxx b/dbaccess/source/core/dataaccess/databasedocument.cxx index d0f4e3d04ea4..b84ddfdf2fd9 100644 --- a/dbaccess/source/core/dataaccess/databasedocument.cxx +++ b/dbaccess/source/core/dataaccess/databasedocument.cxx @@ -178,7 +178,7 @@ ODatabaseDocument::ODatabaseDocument(const ::rtl::Reference<ODatabaseModelImpl>& if ( !m_pImpl->getURL().isEmpty() ) { - // if the previous incarnation of the DatabaseDocument already had an URL, then creating this incarnation + // if the previous incarnation of the DatabaseDocument already had a URL, then creating this incarnation // here is effectively loading the document. // #i105505# m_aViewMonitor.onLoadedDocument(); diff --git a/dbaccess/source/filter/xml/dbloader2.cxx b/dbaccess/source/filter/xml/dbloader2.cxx index 6a95a246b9fb..8f5560c9dc4d 100644 --- a/dbaccess/source/filter/xml/dbloader2.cxx +++ b/dbaccess/source/filter/xml/dbloader2.cxx @@ -457,8 +457,8 @@ void SAL_CALL DBContentLoader::load(const Reference< XFrame > & rFrame, const OU if ( !bCreateNew ) { - // We need to XLoadable::load the document if it does not yet have an URL. - // If it already *does* have an URL, then it was either passed in the arguments, or a previous incarnation + // We need to XLoadable::load the document if it does not yet have a URL. + // If it already *does* have a URL, then it was either passed in the arguments, or a previous incarnation // of that model existed before (which can happen if a model is closed, but an associated DataSource is kept // alive 'til loading the document again). bool bNeedLoad = xModel->getURL().isEmpty(); diff --git a/dbaccess/source/ui/browser/exsrcbrw.cxx b/dbaccess/source/ui/browser/exsrcbrw.cxx index 72451bb431e7..64758528784b 100644 --- a/dbaccess/source/ui/browser/exsrcbrw.cxx +++ b/dbaccess/source/ui/browser/exsrcbrw.cxx @@ -266,7 +266,7 @@ Reference< css::frame::XDispatch > SAL_CALL SbaExternalSourceBrowser::queryDisp css::util::URL aNewUrl = aURL; // split the css::util::URL - OSL_ENSURE( m_xUrlTransformer.is(), "SbaExternalSourceBrowser::queryDispatch : could not create an URLTransformer !" ); + OSL_ENSURE( m_xUrlTransformer.is(), "SbaExternalSourceBrowser::queryDispatch : could not create a URLTransformer !" ); if ( m_xUrlTransformer.is() ) m_xUrlTransformer->parseStrict( aNewUrl ); diff --git a/dbaccess/source/ui/dlg/ConnectionHelper.cxx b/dbaccess/source/ui/dlg/ConnectionHelper.cxx index 24a3660eaa3c..5bb1bf5a6d2a 100644 --- a/dbaccess/source/ui/dlg/ConnectionHelper.cxx +++ b/dbaccess/source/ui/dlg/ConnectionHelper.cxx @@ -581,7 +581,7 @@ namespace dbaui bool OConnectionHelper::createDirectoryDeep(const OUString& _rPathURL) { - // get an URL object analyzing the URL for us ... + // get a URL object analyzing the URL for us ... INetURLObject aParser; aParser.SetURL(_rPathURL); |