summaryrefslogtreecommitdiff
path: root/basebmp/inc/basebmp/fillimage.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'basebmp/inc/basebmp/fillimage.hxx')
-rw-r--r--basebmp/inc/basebmp/fillimage.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/basebmp/inc/basebmp/fillimage.hxx b/basebmp/inc/basebmp/fillimage.hxx
index d3809ecc0b6e..2ec90b4b0db3 100644
--- a/basebmp/inc/basebmp/fillimage.hxx
+++ b/basebmp/inc/basebmp/fillimage.hxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -36,8 +36,8 @@ namespace basebmp
{
template< class DestIterator, class DestAccessor, typename T >
-void fillImage( DestIterator begin,
- DestIterator end,
+void fillImage( DestIterator begin,
+ DestIterator end,
DestAccessor ad,
T fillVal )
{
@@ -50,9 +50,9 @@ void fillImage( DestIterator begin,
rowIter( begin.rowIterator() );
const typename vigra::IteratorTraits<DestIterator>::row_iterator
rowEnd( rowIter + width );
-
- // TODO(P2): Provide specialized span fill methods on the
- // iterator/accessor
+
+ // TODO(P2): Provide specialized span fill methods on the
+ // iterator/accessor
while( rowIter != rowEnd )
ad.set(fillVal, rowIter++);
}