summaryrefslogtreecommitdiff
path: root/basctl
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2011-08-09 00:17:54 +0200
committerJulien Nabet <serval2412@yahoo.fr>2011-08-09 00:17:54 +0200
commitda41ba97d3ac0eb751dfc4b716bd594d1670c77e (patch)
tree14e7379e4902fc1af5d5dc499b4d8aa58edfe58a /basctl
parent2a90263421ff14eaf246998cc71551583a140f8a (diff)
Some cppcheck cleaning
Diffstat (limited to 'basctl')
-rw-r--r--basctl/source/dlged/dlgedobj.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/basctl/source/dlged/dlgedobj.cxx b/basctl/source/dlged/dlgedobj.cxx
index 315b4a4b7c37..cff3e08bd594 100644
--- a/basctl/source/dlged/dlgedobj.cxx
+++ b/basctl/source/dlged/dlgedobj.cxx
@@ -1531,7 +1531,7 @@ void DlgEdForm::PositionAndSizeChange( const beans::PropertyChangeEvent& evt )
nPageHeightIn = aPageSize.Height();
if ( TransformSdrToControlCoordinates( nPageXIn, nPageYIn, nPageWidthIn, nPageHeightIn, nPageX, nPageY, nPageWidth, nPageHeight ) )
{
- for ( aIter = aChildList.begin(); aIter != aChildList.end(); aIter++ )
+ for ( aIter = aChildList.begin(); aIter != aChildList.end(); ++aIter )
{
Reference< beans::XPropertySet > xPSet( (*aIter)->GetUnoControlModel(), UNO_QUERY );
if ( xPSet.is() )
@@ -1578,7 +1578,7 @@ void DlgEdForm::PositionAndSizeChange( const beans::PropertyChangeEvent& evt )
}
}
- for ( aIter = aChildList.begin(); aIter != aChildList.end(); aIter++ )
+ for ( aIter = aChildList.begin(); aIter != aChildList.end(); ++aIter )
{
(*aIter)->SetRectFromProps();
}
@@ -1780,7 +1780,7 @@ void DlgEdForm::NbcMove( const Size& rSize )
// set geometry properties of all childs
::std::vector<DlgEdObj*>::iterator aIter;
- for ( aIter = pChilds.begin() ; aIter != pChilds.end() ; aIter++ )
+ for ( aIter = pChilds.begin() ; aIter != pChilds.end() ; ++aIter )
{
(*aIter)->EndListening(sal_False);
(*aIter)->SetPropsFromRect();
@@ -1804,7 +1804,7 @@ void DlgEdForm::NbcResize(const Point& rRef, const Fraction& xFract, const Fract
// set geometry properties of all childs
::std::vector<DlgEdObj*>::iterator aIter;
- for ( aIter = pChilds.begin() ; aIter != pChilds.end() ; aIter++ )
+ for ( aIter = pChilds.begin() ; aIter != pChilds.end() ; ++aIter )
{
(*aIter)->EndListening(sal_False);
(*aIter)->SetPropsFromRect();