diff options
author | Matteo Casalin <matteo.casalin@yahoo.com> | 2014-02-23 11:22:01 +0100 |
---|---|---|
committer | Matteo Casalin <matteo.casalin@yahoo.com> | 2014-02-24 09:08:34 +0100 |
commit | c1e06b7a91e0a2f2ddcf9d669bccb0eb488dc4f8 (patch) | |
tree | ad8e90f915034bb72553adcde6ce1c60925592ef /sc/qa | |
parent | c19cb642dbce41a481f65bc342bc8dc3008211c8 (diff) |
Fix -Werror=shadow
Change-Id: I30312e039c98007d6f379c3ee9b1500ddfbfc39d
Diffstat (limited to 'sc/qa')
-rw-r--r-- | sc/qa/unit/ucalc.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/qa/unit/ucalc.cxx b/sc/qa/unit/ucalc.cxx index 2afd4f85bfea..58c212861376 100644 --- a/sc/qa/unit/ucalc.cxx +++ b/sc/qa/unit/ucalc.cxx @@ -3389,11 +3389,11 @@ void Test::testCopyPasteSkipEmpty() bool mbHasNote; }; - struct Test + struct TestRange { ScDocument* mpDoc; - Test( ScDocument* pDoc ) : mpDoc(pDoc) {} + TestRange( ScDocument* pDoc ) : mpDoc(pDoc) {} bool checkRange( const ScAddress& rPos, const Check* p, const Check* pEnd ) { |