From 9976672977d39fc5fe9df2b0110ed977d79609a8 Mon Sep 17 00:00:00 2001 From: Lei Zhang Date: Tue, 23 Feb 2016 11:21:48 -0800 Subject: Remove uses of this->foo. R=weili@chromium.org Review URL: https://codereview.chromium.org/1722913002 . --- xfa/src/fgas/src/font/fx_stdfontmgr.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'xfa/src/fgas') diff --git a/xfa/src/fgas/src/font/fx_stdfontmgr.h b/xfa/src/fgas/src/font/fx_stdfontmgr.h index cdf07781da..42aea16a3a 100644 --- a/xfa/src/fgas/src/font/fx_stdfontmgr.h +++ b/xfa/src/fgas/src/font/fx_stdfontmgr.h @@ -97,13 +97,13 @@ struct FX_FontDescriptorInfo { CFX_FontDescriptor* pFont; int32_t nPenalty; FX_BOOL operator>(const FX_FontDescriptorInfo& x) { - return this->nPenalty > x.nPenalty; + return nPenalty > x.nPenalty; }; FX_BOOL operator<(const FX_FontDescriptorInfo& x) { - return this->nPenalty < x.nPenalty; + return nPenalty < x.nPenalty; }; FX_BOOL operator==(const FX_FontDescriptorInfo& x) { - return this->nPenalty == x.nPenalty; + return nPenalty == x.nPenalty; }; }; typedef CFX_ArrayTemplate CFX_FontDescriptorInfos; -- cgit v1.2.3