]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/objstrm.cpp
synced intl.cpp and intl.h
[wxWidgets.git] / src / common / objstrm.cpp
index 0f4a38608ace2453da814688bf36f074569c1d8f..e0156b200dd51ba569bc88bb5c04f5b88b5621e8 100644 (file)
@@ -8,8 +8,9 @@
 // Copyright:   (c) 1998 Guilhem Lavaux
 // Licence:     wxWindows license
 /////////////////////////////////////////////////////////////////////////////
+
 #ifdef __GNUG__
-#pragma implementation "objstrm.h"
+    #pragma implementation "objstrm.h"
 #endif
 
 // For compilers that support precompilation, includes "wx.h".
@@ -45,7 +46,7 @@ wxString wxObjectOutputStream::GetObjectName(wxObject *obj)
 {
   wxString name;
 
-  name.Printf(_T("%x"), (unsigned long)obj);
+  name.Printf(wxT("%x"), (unsigned long)obj);
   return name;
 }
 
@@ -58,16 +59,16 @@ void wxObjectOutputStream::WriteObjectDef(wxObjectStreamInfo& info)
   if (info.duplicate) {
     data_s.WriteString(TAG_DUPLICATE_OBJECT);
     data_s.WriteString(GetObjectName(info.object));
-    wxPrintf(_T("info.object (dup %s)\n"), info.object->GetClassInfo()->GetClassName());
+    wxPrintf(wxT("info.object (dup %s)\n"), info.object->GetClassInfo()->GetClassName());
     return;
   }
 
   if (info.object) {
     data_s.WriteString(info.object->GetClassInfo()->GetClassName());
-    wxPrintf(_T("info.object (%s)\n"), info.object->GetClassInfo()->GetClassName());
+    wxPrintf(wxT("info.object (%s)\n"), info.object->GetClassInfo()->GetClassName());
   } else {
     data_s.WriteString(TAG_EMPTY_OBJECT);
-    wxPrintf(_T("info.object (NULL)\n"));
+    wxPrintf(wxT("info.object (NULL)\n"));
     return;
   }
 
@@ -321,5 +322,5 @@ wxObject *wxObjectInputStream::LoadObject()
   return object;
 }
 
-#endif
+#endif // wxUSE_SERIAL && wxUSE_STREAMS