From 91e181ea585855bea97a07823f7334d0b98b20d5 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Mon, 21 Oct 2013 12:23:14 +0100 Subject: remove uses of COMPARE_* Change-Id: Icdc36b4b24d2f399f481065df3200feb98025135 --- svtools/source/misc/imagemgr.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'svtools/source/misc') diff --git a/svtools/source/misc/imagemgr.cxx b/svtools/source/misc/imagemgr.cxx index b9f78c19a38a..781980d62095 100644 --- a/svtools/source/misc/imagemgr.cxx +++ b/svtools/source/misc/imagemgr.cxx @@ -236,7 +236,7 @@ static OUString GetImageExtensionByFactory_Impl( const OUString& rURL ) for ( sal_Int32 i = 0; i < nProps; ++i ) { const ::com::sun::star::beans::PropertyValue& rProp = aTypeProps[i]; - if ( rProp.Name.compareToAscii("Extensions") == COMPARE_EQUAL ) + if (rProp.Name == "Extensions") { ::com::sun::star::uno::Sequence < OUString > aExtensions; if ( ( rProp.Value >>= aExtensions ) && aExtensions.getLength() > 0 ) -- cgit