diff options
author | Lei Zhang <thestig@chromium.org> | 2015-08-14 21:39:51 -0700 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2015-08-14 21:39:51 -0700 |
commit | 632b807b386878afdb42322f0037f8998306f4a9 (patch) | |
tree | b9ff525f52a3344d77ef7154a0b698286875b029 /fpdfsdk/include/pdfwindow/PWL_Icon.h | |
parent | 24fbf134d43a7ec4226de3db601f0a617bbe428b (diff) | |
download | pdfium-632b807b386878afdb42322f0037f8998306f4a9.tar.xz |
Clean: Fix some unneeded semi-colons and bad spacing.
TBR=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1284193005 .
Diffstat (limited to 'fpdfsdk/include/pdfwindow/PWL_Icon.h')
-rw-r--r-- | fpdfsdk/include/pdfwindow/PWL_Icon.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fpdfsdk/include/pdfwindow/PWL_Icon.h b/fpdfsdk/include/pdfwindow/PWL_Icon.h index 95157cad1f..827741106b 100644 --- a/fpdfsdk/include/pdfwindow/PWL_Icon.h +++ b/fpdfsdk/include/pdfwindow/PWL_Icon.h @@ -38,7 +38,7 @@ class CPWL_Icon : public CPWL_Image { CPWL_Icon(); ~CPWL_Icon() override; - virtual CPDF_IconFit* GetIconFit() { return m_pIconFit; }; + virtual CPDF_IconFit* GetIconFit() { return m_pIconFit; } // CPWL_Image void GetScale(FX_FLOAT& fHScale, FX_FLOAT& fVScale) override; @@ -49,7 +49,7 @@ class CPWL_Icon : public CPWL_Image { void GetIconPosition(FX_FLOAT& fLeft, FX_FLOAT& fBottom); FX_BOOL GetFittingBounds(); - void SetIconFit(CPDF_IconFit* pIconFit) { m_pIconFit = pIconFit; }; + void SetIconFit(CPDF_IconFit* pIconFit) { m_pIconFit = pIconFit; } private: CPDF_IconFit* m_pIconFit; |