X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1a6255e6645bfea2c30b8a65915aa2a3479f84af..a9102b3671a45d116d781b0c8e90d2e9a84fbdcb:/include/wx/filename.h diff --git a/include/wx/filename.h b/include/wx/filename.h index b2abdf4569..b3b961c056 100644 --- a/include/wx/filename.h +++ b/include/wx/filename.h @@ -367,9 +367,11 @@ public: void RemoveLastDir() { RemoveDir(GetDirCount() - 1); } // Other accessors - void SetExt( const wxString &ext ) { m_ext = ext; } + void SetExt( const wxString &ext ) { m_ext = ext; m_hasExt = !m_ext.empty(); } + void ClearExt() { m_ext = wxEmptyString; m_hasExt = false; } + void SetEmptyExt() { m_ext = wxT(""); m_hasExt = true; } wxString GetExt() const { return m_ext; } - bool HasExt() const { return !m_ext.empty(); } + bool HasExt() const { return m_hasExt; } void SetName( const wxString &name ) { m_name = name; } wxString GetName() const { return m_name; }