summaryrefslogtreecommitdiff
path: root/basegfx
diff options
context:
space:
mode:
Diffstat (limited to 'basegfx')
-rw-r--r--basegfx/source/inc/hommatrixtemplate.hxx8
1 files changed, 2 insertions, 6 deletions
diff --git a/basegfx/source/inc/hommatrixtemplate.hxx b/basegfx/source/inc/hommatrixtemplate.hxx
index f9b3e2260481..08c5b538f995 100644
--- a/basegfx/source/inc/hommatrixtemplate.hxx
+++ b/basegfx/source/inc/hommatrixtemplate.hxx
@@ -37,10 +37,8 @@ namespace basegfx
return 0.0;
}
- template < unsigned int RowSize_ > class ImplMatLine
+ template < sal_uInt16 RowSize > class ImplMatLine
{
- enum { RowSize = RowSize_ };
-
double mfValue[RowSize];
public:
@@ -74,10 +72,8 @@ namespace basegfx
}
};
- template < unsigned int RowSize_ > class ImplHomMatrixTemplate
+ template < sal_uInt16 RowSize > class ImplHomMatrixTemplate
{
- enum { RowSize = RowSize_ };
-
ImplMatLine< RowSize > maLine[RowSize - 1];
ImplMatLine< RowSize >* mpLine;