From 6a1603fd28bae95cc168e5ba828b882fd8f29503 Mon Sep 17 00:00:00 2001
From: Korrawit Pruegsanusak <detective.conan.1412@gmail.com>
Date: Wed, 7 Sep 2011 21:56:04 +0700
Subject: [PATCH] cppcheck cleaning: duplicate expression on both sides of <

---
 vcl/source/gdi/outdev3.cxx |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/vcl/source/gdi/outdev3.cxx b/vcl/source/gdi/outdev3.cxx
index 722bcbe..21b3fd7 100755
--- a/vcl/source/gdi/outdev3.cxx
+++ b/vcl/source/gdi/outdev3.cxx
@@ -7543,7 +7543,7 @@ sal_uLong OutputDevice::GetKerningPairCount() const
 
 inline bool CmpKernData( const KerningPair& a, const KerningPair& b )
 {
-    return (a.nChar1 < b.nChar1) || ((a.nChar1 == a.nChar2) && (a.nChar2 < a.nChar2));
+    return (a.nChar1 < b.nChar1) || ((a.nChar1 == a.nChar2) && (a.nChar2 < b.nChar2));
 }
 
 // TODO: best is to get rid of this method completely
-- 
1.7.5.1

