]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/carbon/dirmac.cpp
Add support for gradient stops to wxGraphicsContext.
[wxWidgets.git] / src / osx / carbon / dirmac.cpp
index 52e9a61e0fb3af919c3b7a0d82ca0e6ab4a7c957..6ac3a147f54ed2e3b127e2898ecb654dfefadbe7 100644 (file)
@@ -33,7 +33,7 @@
 
 #include "wx/filefn.h"          // for wxDirExists()
 #include "wx/filename.h"
 
 #include "wx/filefn.h"          // for wxDirExists()
 #include "wx/filename.h"
-#include "wx/mac/private.h"
+#include "wx/osx/private.h"
 
 // ----------------------------------------------------------------------------
 // private classes
 
 // ----------------------------------------------------------------------------
 // private classes
@@ -77,7 +77,7 @@ wxDirData::wxDirData(const wxString& dirname)
 {
     // throw away the trailing slashes
     size_t n = m_dirname.length();
 {
     // throw away the trailing slashes
     size_t n = m_dirname.length();
-    wxCHECK_RET( n, _T("empty dir name in wxDir") );
+    wxCHECK_RET( n, wxT("empty dir name in wxDir") );
 
     while ( n > 0 && wxIsPathSeparator(m_dirname[--n]) )
         ;
 
     while ( n > 0 && wxIsPathSeparator(m_dirname[--n]) )
         ;
@@ -135,9 +135,9 @@ bool wxDirData::Read(wxString *filename)
         ItemCount fetched = 0;
 
         err = FSGetCatalogInfoBulk( m_iterator, 1, &fetched, NULL, kFSCatInfoNodeFlags | kFSCatInfoFinderInfo , &catalogInfo , &fileRef, NULL, &uniname );
         ItemCount fetched = 0;
 
         err = FSGetCatalogInfoBulk( m_iterator, 1, &fetched, NULL, kFSCatInfoNodeFlags | kFSCatInfoFinderInfo , &catalogInfo , &fileRef, NULL, &uniname );
-        
-        // expected error codes 
-        
+
+        // expected error codes
+
         if ( errFSNoMoreItems == err )
             return false ;
         if ( afpAccessDenied == err )
         if ( errFSNoMoreItems == err )
             return false ;
         if ( afpAccessDenied == err )
@@ -225,7 +225,7 @@ wxString wxDir::GetName() const
     if ( m_data )
     {
         name = m_data->GetName();
     if ( m_data )
     {
         name = m_data->GetName();
-        if ( !name.empty() && (name.Last() == _T('/')) )
+        if ( !name.empty() && (name.Last() == wxT('/')) )
         {
             // chop off the last (back)slash
             name.Truncate(name.length() - 1);
         {
             // chop off the last (back)slash
             name.Truncate(name.length() - 1);
@@ -249,7 +249,7 @@ bool wxDir::GetFirst(wxString *filename,
                      const wxString& filespec,
                      int flags) const
 {
                      const wxString& filespec,
                      int flags) const
 {
-    wxCHECK_MSG( IsOpened(), false, _T("must wxDir::Open() first") );
+    wxCHECK_MSG( IsOpened(), false, wxT("must wxDir::Open() first") );
 
     m_data->Rewind();
 
 
     m_data->Rewind();
 
@@ -261,9 +261,9 @@ bool wxDir::GetFirst(wxString *filename,
 
 bool wxDir::GetNext(wxString *filename) const
 {
 
 bool wxDir::GetNext(wxString *filename) const
 {
-    wxCHECK_MSG( IsOpened(), false, _T("must wxDir::Open() first") );
+    wxCHECK_MSG( IsOpened(), false, wxT("must wxDir::Open() first") );
 
 
-    wxCHECK_MSG( filename, false, _T("bad pointer in wxDir::GetNext()") );
+    wxCHECK_MSG( filename, false, wxT("bad pointer in wxDir::GetNext()") );
 
     return m_data->Read(filename);
 }
 
     return m_data->Read(filename);
 }