summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 13:56:53 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 13:56:53 +0000
commit77f4ebd868e9b9f0a48305bb827d7aea08c28713 (patch)
tree3abf793608d6e84a68b47e877c19fca128ed9fd6
parent9d39f48e2d973f5ffdeae8bbdf4d21f2a6faed8d (diff)
INTEGRATION: CWS warnings01 (1.11.108); FILE MERGED
2006/03/10 14:33:16 cl 1.11.108.1: removed some warnings, mostly shadowed variables
-rw-r--r--svx/source/customshapes/EnhancedCustomShapeFontWork.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/svx/source/customshapes/EnhancedCustomShapeFontWork.cxx b/svx/source/customshapes/EnhancedCustomShapeFontWork.cxx
index c48307d444..1cd66a5880 100644
--- a/svx/source/customshapes/EnhancedCustomShapeFontWork.cxx
+++ b/svx/source/customshapes/EnhancedCustomShapeFontWork.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: EnhancedCustomShapeFontWork.cxx,v $
*
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
- * last change: $Author: kz $ $Date: 2005-11-02 09:57:06 $
+ * last change: $Author: hr $ $Date: 2006-06-19 14:56:53 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -666,7 +666,7 @@ void CalcDistances( const Polygon& rPoly, std::vector< double >& rDistances )
}
}
-void InsertMissingOutlinePoints( const Polygon& rOutlinePoly, const std::vector< double >& rDistances, const Rectangle& rTextAreaBoundRect, Polygon& rPoly )
+void InsertMissingOutlinePoints( const Polygon& /*rOutlinePoly*/, const std::vector< double >& rDistances, const Rectangle& rTextAreaBoundRect, Polygon& rPoly )
{
sal_uInt16 i = 0;
double fLastDistance;
@@ -861,8 +861,8 @@ void FitTextOutlinesToShapeOutlines( const PolyPolygon& aOutlines2d, FWData& rFW
//BFS09 InsertMissingOutlinePoints( rOutlinePoly, vDistances, rTextAreaBoundRect, rPoly );
//BFS09 InsertMissingOutlinePoints( rOutlinePoly2, vDistances2, rTextAreaBoundRect, rPoly );
- sal_uInt16 j, nPointCount = aLocalPoly.GetSize();
- for ( j = 0; j < nPointCount; j++ )
+ sal_uInt16 j, _nPointCount = aLocalPoly.GetSize();
+ for ( j = 0; j < _nPointCount; j++ )
{
Point& rPoint = aLocalPoly[ j ];
rPoint.X() -= nLeft;