Kaydet (Commit) 6e7eb552 authored tarafından Andrea Gelmini's avatar Andrea Gelmini Kaydeden (comit) Julien Nabet

Fix typo

Change-Id: Ie0d2c0cde9c1fb58a63e8ef5331bdcb5126aaf28
Reviewed-on: https://gerrit.libreoffice.org/72577Reviewed-by: 's avatarJulien Nabet <serval2412@yahoo.fr>
Tested-by: 's avatarJulien Nabet <serval2412@yahoo.fr>
üst 0f551271
......@@ -251,7 +251,7 @@ STDMETHODIMP CXTDataObject::GetData( FORMATETC * pFormatetc, STGMEDIUM * pmedium
invalidateStgMedium( *pmedium );
validateFormatEtc( pFormatetc );
// handle locale request, because locale is a artificial format for us
// handle locale request, because locale is an artificial format for us
if ( CF_LOCALE == pFormatetc->cfFormat )
renderLocaleAndSetupStgMedium( *pFormatetc, *pmedium );
else if ( CF_UNICODETEXT == pFormatetc->cfFormat )
......@@ -308,7 +308,7 @@ void CXTDataObject::renderUnicodeAndSetupStgMedium(
Any aAny = m_XTransferable->getTransferData( aFlavor );
// unfortunately not all transferables fulfill the
// spec. an do throw an UnsupportedFlavorException
// spec. and do throw an UnsupportedFlavorException
// so we must check the any
if ( !aAny.hasValue( ) )
{
......@@ -340,7 +340,7 @@ void CXTDataObject::renderAnyDataAndSetupStgMedium(
Any aAny = m_XTransferable->getTransferData( aFlavor );
// unfortunately not all transferables fulfill the
// spec. an do throw an UnsupportedFlavorException
// spec. and do throw an UnsupportedFlavorException
// so we must check the any
if ( !aAny.hasValue( ) )
{
......@@ -349,7 +349,7 @@ void CXTDataObject::renderAnyDataAndSetupStgMedium(
}
// unfortunately not all transferables fulfill the
// spec. an do throw an UnsupportedFlavorException
// spec. and do throw an UnsupportedFlavorException
// so we must check the any
if ( !aAny.hasValue( ) )
throw UnsupportedFlavorException( );
......@@ -446,7 +446,7 @@ void CXTDataObject::renderSynthesizedUnicodeAndSetupStgMedium( FORMATETC const &
Any aAny = m_XTransferable->getTransferData( m_FormatRegistrar.getRegisteredTextFlavor( ) );
// unfortunately not all transferables fulfill the
// spec. an do throw an UnsupportedFlavorException
// spec. and do throw an UnsupportedFlavorException
// so we must check the any
if ( !aAny.hasValue( ) )
{
......@@ -480,7 +480,7 @@ void CXTDataObject::renderSynthesizedTextAndSetupStgMedium( FORMATETC& fetc, STG
Any aAny = m_XTransferable->getTransferData( aFlavor );
// unfortunately not all transferables fulfill the
// spec. an do throw an UnsupportedFlavorException
// spec. and do throw an UnsupportedFlavorException
// so we must check the any
if ( !aAny.hasValue( ) )
{
......@@ -515,7 +515,7 @@ void CXTDataObject::renderSynthesizedHtmlAndSetupStgMedium( FORMATETC& fetc, STG
Any aAny = m_XTransferable->getTransferData( aFlavor );
// unfortunately not all transferables fulfill the
// spec. an do throw an UnsupportedFlavorException
// spec. and do throw an UnsupportedFlavorException
// so we must check the any
if ( !aAny.hasValue( ) )
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment