From 83e3abf7e41ebdbd0924227075eb861195638074 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Mon, 26 Jan 2015 11:23:31 +0000 Subject: coverity#1266480 silence Pointer to local outside scope Change-Id: I2b4b0704afbf750aae0ef59f058c6000a06dc185 --- sc/source/ui/dbgui/pvfundlg.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sc') diff --git a/sc/source/ui/dbgui/pvfundlg.cxx b/sc/source/ui/dbgui/pvfundlg.cxx index 935e02a982d8..8f5c24bd15e9 100644 --- a/sc/source/ui/dbgui/pvfundlg.cxx +++ b/sc/source/ui/dbgui/pvfundlg.cxx @@ -331,7 +331,8 @@ sal_Int32 ScDPFunctionDlg::FindBaseItemPos( const OUString& rEntry, sal_Int32 nS while (nPos < mpLbBaseItem->GetEntryCount()) { // translate the displayed field name back to its original field name. - const OUString& rName = GetBaseItemName(mpLbBaseItem->GetEntry(nPos)); + const OUString& rInName = mpLbBaseItem->GetEntry(nPos); + const OUString& rName = GetBaseItemName(rInName); if (rName.equals(rEntry)) { bFound = true; -- cgit lue='distro/capgemini/cg-4.1'>distro/capgemini/cg-4.1 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/graphite
AgeCommit message (Expand)Author
2013-10-18fdo#70393: move graphite to a subdir of externalKhaled Hosny
2013-08-28Fix windows libo crash with graphite fonts.Martin Hosken
2013-04-17Clang does not have -fpermissiveTor Lillqvist