Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Unified Diff: core/src/fpdftext/text_int.h

Issue 1301453002: Merge to XFA: Cleanup: Fix some unneeded semi-colons and bad spacing. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « core/src/fpdfdoc/pdf_vt.h ('k') | core/src/fxcodec/codec/codec_int.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/src/fpdftext/text_int.h
diff --git a/core/src/fpdftext/text_int.h b/core/src/fpdftext/text_int.h
index 701ee8af980158679dc25b9c0b862161be5e4fe2..24b89f16811fa2ba34c8c78bee3e90954d3868bc 100644
--- a/core/src/fpdftext/text_int.h
+++ b/core/src/fpdftext/text_int.h
@@ -47,7 +47,7 @@ class CPDF_TextPage : public IPDF_TextPage {
CPDF_TextPage(const CPDF_Page* pPage, int flags = 0);
CPDF_TextPage(const CPDF_PageObjects* pPage, int flags = 0);
CPDF_TextPage(const CPDF_Page* pPage, CPDFText_ParseOptions ParserOptions);
- ~CPDF_TextPage() override{};
+ ~CPDF_TextPage() override {}
// IPDF_TextPage
FX_BOOL ParseTextPage() override;
@@ -145,7 +145,7 @@ class CPDF_TextPage : public IPDF_TextPage {
class CPDF_TextPageFind : public IPDF_TextPageFind {
public:
CPDF_TextPageFind(const IPDF_TextPage* pTextPage);
- ~CPDF_TextPageFind() override{};
+ ~CPDF_TextPageFind() override {}
// IPDF_TextPageFind
FX_BOOL FindFirst(const CFX_WideString& findwhat,
@@ -191,11 +191,11 @@ class CPDF_TextPageFind : public IPDF_TextPageFind {
};
class CPDF_LinkExt {
public:
- CPDF_LinkExt(){};
+ CPDF_LinkExt() {}
int m_Start;
int m_Count;
CFX_WideString m_strUrl;
- virtual ~CPDF_LinkExt(){};
+ virtual ~CPDF_LinkExt() {}
};
typedef CFX_ArrayTemplate<CPDF_LinkExt*> LINK_InfoArray;
« no previous file with comments | « core/src/fpdfdoc/pdf_vt.h ('k') | core/src/fxcodec/codec/codec_int.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698