]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/os2/tls.h
remove unused data member
[wxWidgets.git] / include / wx / os2 / tls.h
index adbfadc4091c582428e6c50ca61d0df5670f1ae9..4c22721fb3412e4381066419db2d2f8db2d1c5e0 100644 (file)
@@ -8,8 +8,8 @@
 // Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
 
-#ifndef _WX_MSW_TLS_H_
-#define _WX_MSW_TLS_H_
+#ifndef _WX_OS2_TLS_H_
+#define _WX_OS2_TLS_H_
 
 #include "wx/os2/private.h"
 
@@ -24,8 +24,8 @@ public:
     wxTlsKey()
     {
         APIRET rc = ::DosAllocThreadLocalMemory(1, &m_slot);
-       if (rc != NO_ERROR)
-           m_slot = NULL;
+        if (rc != NO_ERROR)
+            m_slot = NULL;
     }
 
     // return true if the key was successfully allocated
@@ -41,7 +41,7 @@ public:
     bool Set(void *value)
     {
         m_slot = (ULONG*)value;
-       return true;
+        return true;
     }
 
     // free the key
@@ -54,8 +54,8 @@ public:
 private:
     ULONG* m_slot;
 
-    DECLARE_NO_COPY_CLASS(wxTlsKey)
+    wxDECLARE_NO_COPY_CLASS(wxTlsKey);
 };
 
-#endif // _WX_MSW_TLS_H_
+#endif // _WX_OS2_TLS_H_