]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/archive.h
Fixed typo in documentation string
[wxWidgets.git] / interface / wx / archive.h
index 1bb6579bfe5d5093ded07feb29e1eb1cf5797423..646aa8ce4ac76d5d652cbf2e5238f936f44f0b26 100644 (file)
@@ -384,7 +384,7 @@ public:
         const wxArchiveClassFactory *factory = wxArchiveClassFactory::GetFirst();
 
         while (factory) {
-            list << factory->GetProtocol() << _T("\n");
+            list << factory->GetProtocol() << wxT("\n");
             factory = factory->GetNext();
         }
         @endcode
@@ -421,7 +421,7 @@ public:
         const wxChar *const *p;
 
         for (p = factory->GetProtocols(wxSTREAM_FILEEXT); *p; p++)
-            list << *p << _T("\n");
+            list << *p << wxT("\n");
         @endcode
     */
     virtual const wxChar** GetProtocols(wxStreamProtocolType type = wxSTREAM_PROTOCOL) const = 0;