Add missing static to wxZipEntry::GetInternalName() documentation

Closes https://github.com/wxWidgets/wxWidgets/pull/1872
This commit is contained in:
Tomay 2020-05-25 21:41:22 +01:00 committed by Vadim Zeitlin
parent e2562b08a4
commit ca59d38cfd

View File

@ -310,9 +310,9 @@ public:
@see @ref overview_archive_byname @see @ref overview_archive_byname
*/ */
wxString GetInternalName(const wxString& name, static wxString GetInternalName(const wxString& name,
wxPathFormat format = wxPATH_NATIVE, wxPathFormat format = wxPATH_NATIVE,
bool* pIsDir = NULL); bool* pIsDir = NULL);
/** /**
Returns the entry's filename in the internal format used within the archive. 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. The name can include directory components, i.e. it can be a full path.