From e13fd395939ff037a38172a87366a84293df7e30 Mon Sep 17 00:00:00 2001 From: Eike Rathke Date: Thu, 5 Sep 2013 15:54:14 +0200 Subject: getFallbackStrings() with bIncludeFullBcp47 parameter so the various places that check the full tag first do not have to get it just to delete it again. Change-Id: Ib4e3cf1b16988464db875f1b6ac5cf4a0ab60fe5 --- vcl/source/gdi/impimagetree.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vcl/source/gdi') diff --git a/vcl/source/gdi/impimagetree.cxx b/vcl/source/gdi/impimagetree.cxx index cc32190a6594..4d549f04e92e 100644 --- a/vcl/source/gdi/impimagetree.cxx +++ b/vcl/source/gdi/impimagetree.cxx @@ -197,7 +197,7 @@ bool ImplImageTree::doLoadImage( sal_Int32 pos = name.lastIndexOf('/'); if (pos != -1) { // find() uses a reverse iterator, so push in reverse order. - std::vector< OUString > aFallbacks( Application::GetSettings().GetUILanguageTag().getFallbackStrings()); + std::vector< OUString > aFallbacks( Application::GetSettings().GetUILanguageTag().getFallbackStrings( true)); for (std::vector< OUString >::const_reverse_iterator it( aFallbacks.rbegin()); it != aFallbacks.rend(); ++it) { -- cgit