summaryrefslogtreecommitdiff
path: root/svx/source/dialog/dlgctrl.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/dialog/dlgctrl.cxx')
-rw-r--r--svx/source/dialog/dlgctrl.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/dialog/dlgctrl.cxx b/svx/source/dialog/dlgctrl.cxx
index 09dffac31784..b55c16ef6cdb 100644
--- a/svx/source/dialog/dlgctrl.cxx
+++ b/svx/source/dialog/dlgctrl.cxx
@@ -888,7 +888,7 @@ void SvxPixelCtl::KeyInput( const KeyEvent& rKEvt )
switch(nCode)
{
case KEY_LEFT:
- if((aFocusPosition.getX() >= 1))
+ if(aFocusPosition.getX() >= 1)
{
aFocusPosition.setX( aFocusPosition.getX() - 1 );
Invalidate(aRepaintRect);
@@ -904,7 +904,7 @@ void SvxPixelCtl::KeyInput( const KeyEvent& rKEvt )
}
break;
case KEY_UP:
- if((aFocusPosition.getY() >= 1))
+ if(aFocusPosition.getY() >= 1)
{
aFocusPosition.setY( aFocusPosition.getY() - 1 );
Invalidate(aRepaintRect);