From 6c80a8fe89fadf9a2c7260a09c037a09462f53d1 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 6 Nov 2015 09:23:33 +0200 Subject: new loplugin: oncevar Change-Id: If57390510dde4d166be3141b9f658a7453755d3f Reviewed-on: https://gerrit.libreoffice.org/19815 Tested-by: Jenkins Reviewed-by: Noel Grandin --- linguistic/source/dlistimp.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'linguistic') diff --git a/linguistic/source/dlistimp.cxx b/linguistic/source/dlistimp.cxx index dfe2d2294403..bc18293c1eba 100644 --- a/linguistic/source/dlistimp.cxx +++ b/linguistic/source/dlistimp.cxx @@ -853,13 +853,12 @@ static bool IsVers2OrNewer( const OUString& rFileURL, sal_uInt16& nLng, bool& bN { if (rFileURL.isEmpty()) return false; - OUString aDIC("dic"); OUString aExt; sal_Int32 nPos = rFileURL.lastIndexOf( '.' ); if (-1 != nPos) aExt = rFileURL.copy( nPos + 1 ).toAsciiLowerCase(); - if (aDIC != aExt) + if (aExt != "dic") return false; // get stream to be used -- cgit