]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/wxexpr.h
wxT() for a Spanish(?) debug message
[wxWidgets.git] / include / wx / wxexpr.h
index 30d32fda623b260344a189db05760b378c868ee4..18b53d0679e35a0e8093d0dafd4dfb4dea608068 100644 (file)
@@ -112,7 +112,7 @@ class WXDLLEXPORT wxExpr
       return value.word;
     else if (type == wxExprString)
       return wxString(value.string);
-    else return wxString(_T(""));
+    else return wxString(wxT(""));
   }
 
   inline wxString StringValue(void) const {
@@ -120,7 +120,7 @@ class WXDLLEXPORT wxExpr
       return wxString(value.string);
     else if (type == wxExprWord)
       return wxString(value.word);
-    else return wxString(_T(""));
+    else return wxString(wxT(""));
   }
 
   // Get nth arg of clause (starting from 1)
@@ -141,7 +141,6 @@ class WXDLLEXPORT wxExpr
   bool IsFunctor(const wxString& s) const;                     // Only for a clause
   void WriteClause(FILE* stream);  // Write this expression as a top-level clause
   void WriteExpr(FILE* stream);    // Write as any other subexpression
-  void WriteLispExpr(FILE* stream);
 
   // Append an expression to a list
   void Append(wxExpr *expr);
@@ -243,7 +242,6 @@ public:
     bool ReadFromString(const wxString& buffer);
     bool Write(const wxString& fileName);
     bool Write(FILE* stream);
-    void WriteLisp(FILE* stream);
 
     // Compatibility
     inline bool ReadProlog(wxChar *filename) { return Read(wxString(filename)); }