summaryrefslogtreecommitdiff
path: root/basebmp
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2007-07-05 07:53:41 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2007-07-05 07:53:41 +0000
commit433ba308d03c6203c4a44c65afc071b42c732836 (patch)
tree3ce0ad80ebda32a7ff83cb65c8f35bc051ac9749 /basebmp
parent64acb9a674ad8af54f7373ffbb9d8a37cf653b61 (diff)
INTEGRATION: CWS aquavcl01 (1.2.22); FILE MERGED
2007/06/21 09:00:07 pl 1.2.22.1: #i78704# add a new pixelformat, minor cosmetics
Diffstat (limited to 'basebmp')
-rwxr-xr-xbasebmp/inc/basebmp/compositeiterator.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/basebmp/inc/basebmp/compositeiterator.hxx b/basebmp/inc/basebmp/compositeiterator.hxx
index 00c8c5aa7fa4..923e08ae722e 100755
--- a/basebmp/inc/basebmp/compositeiterator.hxx
+++ b/basebmp/inc/basebmp/compositeiterator.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: compositeiterator.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: hr $ $Date: 2007-06-27 12:40:09 $
+ * last change: $Author: rt $ $Date: 2007-07-05 08:53:41 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -61,10 +61,10 @@ namespace detail
mpVal2( &val2 )
{}
- void operator++() { ++*mpVal1; ++*mpVal2; }
- void operator++(int) { ++*mpVal1; ++*mpVal2; }
- void operator--() { --*mpVal1; --*mpVal2; }
- void operator--(int) { --*mpVal1; --*mpVal2; }
+ void operator++() { ++(*mpVal1); ++(*mpVal2); }
+ void operator++(int) { (*mpVal1)++; (*mpVal2)++; }
+ void operator--() { --(*mpVal1); --(*mpVal2); }
+ void operator--(int) { (*mpVal1)--; (*mpVal2)--; }
void operator+=(int d) {*mpVal1+=d; *mpVal2+=d; }
void operator-=(int d) {*mpVal1-=d; *mpVal2-=d; }