diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2014-04-10 10:28:38 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2014-04-14 12:32:30 +0200 |
commit | e4181d9a0a4eefad49703b32bb79531bccfc035b (patch) | |
tree | 462e2b5522d3608364434d6c964e6c368ce5254f | |
parent | aa0493be8cbbc3025e1dd2d005c54f519c864bcc (diff) |
typo: ULR -> URL
-rw-r--r-- | dbaccess/source/ui/browser/genericcontroller.cxx | 2 | ||||
-rw-r--r-- | forms/source/component/ImageControl.cxx | 2 | ||||
-rw-r--r-- | sc/source/ui/app/drwtrans.cxx | 2 | ||||
-rw-r--r-- | sc/source/ui/app/transobj.cxx | 2 | ||||
-rw-r--r-- | sd/source/ui/app/sdxfer.cxx | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/dbaccess/source/ui/browser/genericcontroller.cxx b/dbaccess/source/ui/browser/genericcontroller.cxx index 23e0e4f5c980..d59ac626d4bf 100644 --- a/dbaccess/source/ui/browser/genericcontroller.cxx +++ b/dbaccess/source/ui/browser/genericcontroller.cxx @@ -731,7 +731,7 @@ void OGenericUnoController::dispatch(const URL& _aURL, const Sequence< PropertyV void OGenericUnoController::addStatusListener(const Reference< XStatusListener > & aListener, const URL& _rURL) throw(RuntimeException, std::exception) { - // parse the ULR now and here, this saves later parsing in each notification round + // parse the URL now and here, this saves later parsing in each notification round URL aParsedURL( _rURL ); if ( m_xUrlTransformer.is() ) m_xUrlTransformer->parseStrict( aParsedURL ); diff --git a/forms/source/component/ImageControl.cxx b/forms/source/component/ImageControl.cxx index cfafdbb633ec..a1a99ced0a56 100644 --- a/forms/source/component/ImageControl.cxx +++ b/forms/source/component/ImageControl.cxx @@ -346,7 +346,7 @@ void OImageControlModel::describeFixedProperties( Sequence< Property >& _rProps void OImageControlModel::describeAggregateProperties( Sequence< Property >& /* [out] */ o_rAggregateProperties ) const { OBoundControlModel::describeAggregateProperties( o_rAggregateProperties ); - // remove ImageULR and Graphic properties, we "overload" them. This is because our aggregate synchronizes those + // remove ImageURL and Graphic properties, we "overload" them. This is because our aggregate synchronizes those // two, but we have an own sychronization mechanism. RemoveProperty( o_rAggregateProperties, PROPERTY_IMAGE_URL ); RemoveProperty( o_rAggregateProperties, PROPERTY_GRAPHIC ); diff --git a/sc/source/ui/app/drwtrans.cxx b/sc/source/ui/app/drwtrans.cxx index 52e21e1ea2f4..f33845f9a466 100644 --- a/sc/source/ui/app/drwtrans.cxx +++ b/sc/source/ui/app/drwtrans.cxx @@ -581,7 +581,7 @@ bool ScDrawTransferObj::WriteObject( SotStorageStreamRef& rxOStm, void* pUserObj // write document storage pEmbObj->SetupStorage( xWorkStore, SOFFICE_FILEFORMAT_CURRENT, false, false ); - // mba: no relative ULRs for clipboard! + // mba: no relative URLs for clipboard! SfxMedium aMedium( xWorkStore, OUString() ); bRet = pEmbObj->DoSaveObjectAs( aMedium, false ); pEmbObj->DoSaveCompleted(); diff --git a/sc/source/ui/app/transobj.cxx b/sc/source/ui/app/transobj.cxx index 6d265df27410..81076c08c643 100644 --- a/sc/source/ui/app/transobj.cxx +++ b/sc/source/ui/app/transobj.cxx @@ -449,7 +449,7 @@ bool ScTransferObj::WriteObject( SotStorageStreamRef& rxOStm, void* pUserObject, // write document storage pEmbObj->SetupStorage( xWorkStore, SOFFICE_FILEFORMAT_CURRENT, false, false ); - // mba: no relative ULRs for clipboard! + // mba: no relative URLs for clipboard! SfxMedium aMedium( xWorkStore, OUString() ); bRet = pEmbObj->DoSaveObjectAs( aMedium, false ); pEmbObj->DoSaveCompleted(); diff --git a/sd/source/ui/app/sdxfer.cxx b/sd/source/ui/app/sdxfer.cxx index 89186aed646b..c0b58a87bdca 100644 --- a/sd/source/ui/app/sdxfer.cxx +++ b/sd/source/ui/app/sdxfer.cxx @@ -611,7 +611,7 @@ bool SdTransferable::WriteObject( SotStorageStreamRef& rxOStm, void* pObject, sa // write document storage pEmbObj->SetupStorage( xWorkStore, SOFFICE_FILEFORMAT_CURRENT, false ); - // mba: no relative ULRs for clipboard! + // mba: no relative URLs for clipboard! SfxMedium aMedium( xWorkStore, OUString() ); bRet = pEmbObj->DoSaveObjectAs( aMedium, false ); pEmbObj->DoSaveCompleted(); |