From ca59d38cfd45f852a48231aa9f73fd2f3b0b0d30 Mon Sep 17 00:00:00 2001 From: Tomay Date: Mon, 25 May 2020 21:41:22 +0100 Subject: [PATCH] Add missing static to wxZipEntry::GetInternalName() documentation Closes https://github.com/wxWidgets/wxWidgets/pull/1872 --- interface/wx/zipstrm.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/interface/wx/zipstrm.h b/interface/wx/zipstrm.h index b2142a6d95..544c56010a 100644 --- a/interface/wx/zipstrm.h +++ b/interface/wx/zipstrm.h @@ -310,9 +310,9 @@ public: @see @ref overview_archive_byname */ - wxString GetInternalName(const wxString& name, - wxPathFormat format = wxPATH_NATIVE, - bool* pIsDir = NULL); + static wxString GetInternalName(const wxString& name, + wxPathFormat format = wxPATH_NATIVE, + bool* pIsDir = NULL); /** Returns the entry's filename in the internal format used within the archive. The name can include directory components, i.e. it can be a full path.