summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2012-03-08 06:22:37 +0100
committerDavid Tardon <dtardon@redhat.com>2012-03-12 08:53:25 +0100
commit87f637ba50cf02a71112cfc9b2cdff15bc12b088 (patch)
tree45ce5155b1e124a2b41bbc97492f2d6901ffa440 /vcl
parent8b5c1890f3c0c9f7f44c5e6c9a432c652f3938b3 (diff)
probable intent is the other way around
Diffstat (limited to 'vcl')
-rw-r--r--vcl/win/source/gdi/salgdi.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/win/source/gdi/salgdi.cxx b/vcl/win/source/gdi/salgdi.cxx
index dc51fa5a609f..3e835229a74e 100644
--- a/vcl/win/source/gdi/salgdi.cxx
+++ b/vcl/win/source/gdi/salgdi.cxx
@@ -1645,7 +1645,7 @@ static sal_Bool ImplGetBoundingBox( double* nNumb, BYTE* pSource, sal_uLong nSiz
sal_Bool bNegative = FALSE;
sal_Bool bValid = TRUE;
- while ( ( --nSizeLeft ) && ( *pDest == ' ' ) || ( *pDest == 0x9 ) ) pDest++;
+ while ( ( --nSizeLeft ) && ( ( *pDest == ' ' ) || ( *pDest == 0x9 ) ) ) pDest++;
BYTE nByte = *pDest;
while ( nSizeLeft && ( nByte != ' ' ) && ( nByte != 0x9 ) && ( nByte != 0xd ) && ( nByte != 0xa ) )
{