From def2bcb8cd50debcdf47ce6dfc7fc669bcae2a48 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 4 Feb 2015 16:17:20 +0000 Subject: [PATCH] Minor changes in wxChmTools: add const, remove semicolons. Also fix a typo in a comment. Closes #16836. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@78442 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/html/chm.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/html/chm.cpp b/src/html/chm.cpp index cf3e04925e..27ca831d8b 100644 --- a/src/html/chm.cpp +++ b/src/html/chm.cpp @@ -51,13 +51,13 @@ public: const wxArrayString *GetFileNames() { return m_fileNames; - }; + } - /// get the name of the archive representated by this class - const wxString GetArchiveName() + /// get the name of the archive represented by this class + const wxString GetArchiveName() const { return m_chmFileName; - }; + } /// Find a file in the archive const wxString Find(const wxString& pattern,