]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/ole/uuid.h
Common code for the same handling of wxSL_INVERSE.
[wxWidgets.git] / include / wx / msw / ole / uuid.h
index c194a4e4174c9392a5da1742ecd8b460e07f6989..44ac1cb0dff75e022d39a20fc91e63802b0accbc 100644 (file)
@@ -2,7 +2,7 @@
 // Name:        ole/uuid.h
 // Purpose:     encapsulates an UUID with some added helper functions
 // Author:      Vadim Zeitlin
-// Modified by: 
+// Modified by:
 // Created:     11.07.97
 // RCS-ID:      $Id$
 // Copyright:   (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
@@ -25,7 +25,7 @@
 // ----- taken from RPC.H
 #ifndef UUID_DEFINED            // in some cases RPC.H will be already
   #ifdef  __WIN32__             // included, so avoid redefinition
-    typedef struct                
+    typedef struct
     {
       unsigned long   Data1;
       unsigned short  Data2;
@@ -51,7 +51,7 @@ class WXDLLEXPORT Uuid
 {
 private:
   UUID  m_uuid;
-  wxUChar *m_pszUuid;   // this string is alloc'd and freed by RPC 
+  wxUChar *m_pszUuid;   // this string is alloc'd and freed by RPC
   wxChar  *m_pszCForm;  // this string is allocated in Set/Create
 
   void  UuidToCForm();
@@ -73,7 +73,7 @@ public:
   // create a brand new UUID
   void Create();
 
-  // set value of UUID 
+  // set value of UUID
   bool Set(const wxChar *pc); // from a string, returns true if ok
   void Set(const UUID& uuid); // from another UUID (never fails)