Removed warning for Darwin compilation from datetime.inl

Added wxFileName::SetPath() and set m_relative if no dir is given
  Corrected wxFrame::Enable() in wxMac.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13173 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2001-12-23 15:52:29 +00:00
parent cf48ccc00c
commit a7b51bc869
4 changed files with 28 additions and 13 deletions

View File

@@ -259,8 +259,6 @@ public:
bool operator==(const wxString& filename)
{ return *this == wxFileName(filename); }
// Tests
// are the file names of this type cases sensitive?
static bool IsCaseSensitive( wxPathFormat format = wxPATH_NATIVE );
@@ -271,6 +269,12 @@ public:
// is this filename relative?
bool IsRelative() const
{ return m_relative; }
// forcibly set the flag
void SetAbsolute()
{ m_relative = FALSE; }
void SetRelative()
{ m_relative = TRUE; }
// Information about path format
@@ -315,6 +319,8 @@ public:
// Construct path only - possibly with the trailing separator
wxString GetPath( bool add_separator = FALSE,
wxPathFormat format = wxPATH_NATIVE ) const;
// Replace current path with this one
void SetPath( const wxString &path, wxPathFormat format = wxPATH_NATIVE );
// more readable synonym
wxString GetPathWithSep(wxPathFormat format = wxPATH_NATIVE ) const