diff options
author | Tor Lillqvist <tlillqvist@suse.com> | 2012-11-12 12:30:45 +0200 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2012-11-12 12:30:45 +0200 |
commit | fb9522a229c2d7b45d5d9d6e2c4e27ddfde351cf (patch) | |
tree | ade111b708ba6cdf025bdabc9b9fea0daedfd6f7 /sd | |
parent | aa09c0b8b2899c61300c90fa3472381e4d0eaf25 (diff) |
WaE: declaration of pPV shadows a previous local
Change-Id: I1993834b670f9c536bc963527cfb46fedeebd72d
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/func/futext.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/func/futext.cxx b/sd/source/ui/func/futext.cxx index 250c661780fd..99ce662dfe30 100644 --- a/sd/source/ui/func/futext.cxx +++ b/sd/source/ui/func/futext.cxx @@ -801,10 +801,10 @@ sal_Bool FuText::MouseButtonUp(const MouseEvent& rMEvt) Abs(aMDPos.Y() - aPnt.Y()) < nDrgLog1 && !rMEvt.IsShift() && !rMEvt.IsMod2() ) { - SdrPageView* pPV = mpView->GetSdrPageView(); + SdrPageView* pPV2 = mpView->GetSdrPageView(); SdrViewEvent aVEvt; mpView->PickAnything(rMEvt, SDRMOUSEBUTTONDOWN, aVEvt); - mpView->MarkObj(aVEvt.pRootObj, pPV); + mpView->MarkObj(aVEvt.pRootObj, pPV2); } if ( !mxTextObj.is() && mpView ) |