summaryrefslogtreecommitdiff
path: root/vcl/test
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2012-01-10 16:00:18 +0100
committerThomas Arnhold <thomas@arnhold.org>2012-01-10 16:52:33 +0100
commit2c3d0ff9f83aab89980529da2aa3837390b84ef7 (patch)
treea7ff1a3e2271c219b29c4ab3a4e54411c22ed20c /vcl/test
parenta2dd79d14ee2e76e3b6c13f2880706292ea90c26 (diff)
Use SAL_N_ELEMENTS
Some more like Thorstens diff 9c59cd15b150638c845bbc275b9b04460afc23bd Done with some regex magic (and a check if this var is an array): s/sizeof\(\s*$var\s*\)\s*\/\s*sizeof\(\s*\*$var\s*/SAL_N_ELEMENTS\($var/gs
Diffstat (limited to 'vcl/test')
-rw-r--r--vcl/test/canvasbitmaptest.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/test/canvasbitmaptest.cxx b/vcl/test/canvasbitmaptest.cxx
index 66e68c10a93e..9f753ff44923 100644
--- a/vcl/test/canvasbitmaptest.cxx
+++ b/vcl/test/canvasbitmaptest.cxx
@@ -877,7 +877,7 @@ void TestWindow::Paint( const Rectangle& )
// Testing VclCanvasBitmap wrapper
// ===============================
- for( unsigned int i=0; i<sizeof(lcl_depths)/sizeof(*lcl_depths); ++i )
+ for( unsigned int i=0; i<SAL_N_ELEMENTS(lcl_depths); ++i )
{
const sal_Int8 nDepth( lcl_depths[i] );
Bitmap aBitmap(Size(200,200),nDepth);