]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/ipc/connection.h
Update OpenVMS compile support
[wxWidgets.git] / samples / ipc / connection.h
index 42d1816a0714d66d9e0eec355aa54cec63545e5e..18152416d46b8e3c2d549bd7e6eb257709acc9f0 100644 (file)
@@ -3,7 +3,6 @@
 // Purpose:     DDE sample: MyConnection class
 // Author:      Vadim Zeitlin
 // Created:     2008-02-11 (extracted from client.cpp)
-// RCS-ID:      $Id$
 // Copyright:   (c) 1999 Julian Smart
 //                  2008 Vadim Zeitlin
 // Licence:     wxWindows licence
@@ -36,23 +35,23 @@ protected:
         switch (format)
         {
           case wxIPC_TEXT:
-              s += wxString(wx_static_cast(const char *, data), size);
+              s += wxString(static_cast<const char *>(data), size);
               break;
 
 #if wxUSE_UNICODE
           case wxIPC_UNICODETEXT:
-              s += wxString(wx_static_cast(const wchar_t *, data), size);
+              s += wxString(static_cast<const wchar_t *>(data), size);
               break;
 #endif // wxUSE_UNICODE
 
           case wxIPC_UTF8TEXT:
-              s += wxString::FromUTF8(wx_static_cast(const char *, data), size);
+              s += wxString::FromUTF8(static_cast<const char *>(data), size);
               break;
 
           case wxIPC_PRIVATE:
               if ( size == 3 )
               {
-                  const char *bytes = wx_static_cast(const char *, data);
+                  const char *bytes = static_cast<const char *>(data);
                   s << '"' << bytes[0] << bytes[1] << bytes[2] << '"';
               }
               else