summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-05-09 16:34:33 +0100
committerCaolán McNamara <caolanm@redhat.com>2019-05-10 10:01:13 +0200
commit1156f981ac4557737dd915e89e11abaa61e29f14 (patch)
tree86e847ba365f478bb74d3fc4e3785689d8b45c6f /extensions
parent0dc47739176493ded49b665c5fdfe0fe8fff39c1 (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 'extensions')
-rw-r--r--extensions/source/activex/README.txt2
-rw-r--r--extensions/source/propctrlr/unourl.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/extensions/source/activex/README.txt b/extensions/source/activex/README.txt
index 26cc661c97d3..50c209150736 100644
--- a/extensions/source/activex/README.txt
+++ b/extensions/source/activex/README.txt
@@ -20,7 +20,7 @@ opened for editing. Possible parameters are
As any ActiveX control this one should be registered.
To let MSIE register it itself the "CODEBASE" parameter
for the "OBJECT" tag should be specified
-with an URL to the library "so_activex.dll".
+with a URL to the library "so_activex.dll".
The example of registration with "OBJECT" tag is in example.html.
Also it can be done using regsvr32 application.
diff --git a/extensions/source/propctrlr/unourl.cxx b/extensions/source/propctrlr/unourl.cxx
index 51b2b9e7196a..4af3d3146692 100644
--- a/extensions/source/propctrlr/unourl.cxx
+++ b/extensions/source/propctrlr/unourl.cxx
@@ -46,7 +46,7 @@ namespace pcr
if ( _rxORB.is() )
{
xTransform.set( URLTransformer::create(comphelper::getComponentContext(_rxORB)) );
- OSL_ENSURE( xTransform.is(), "UnoURL::UnoURL: could not create an URL transformer!" );
+ OSL_ENSURE( xTransform.is(), "UnoURL::UnoURL: could not create a URL transformer!" );
if ( xTransform.is() )
xTransform->parseStrict( m_aURL );
}