]> git.saurik.com Git - wxWidgets.git/blobdiff - src/os2/thread.cpp
Committing in .
[wxWidgets.git] / src / os2 / thread.cpp
index 51c3dd4f424d66b929da4ed132472beef5b2b470..79040df69e4c30117a05d7c3bc9f9152bb92777a 100644 (file)
@@ -243,32 +243,12 @@ void wxCondition::Broadcast()
 // wxCriticalSection implementation
 // ----------------------------------------------------------------------------
 
-class wxCriticalSectionInternal
-{
-public:
-    // init the critical section object
-    wxCriticalSectionInternal()
-        { }
-
-    // free the associated ressources
-    ~wxCriticalSectionInternal()
-        { }
-
-private:
-};
-
-// ----------------------------------------------------------------------------
-// wxCriticalSection implementation
-// ----------------------------------------------------------------------------
-
 wxCriticalSection::wxCriticalSection()
 {
-    m_critsect = new wxCriticalSectionInternal;
 }
 
 wxCriticalSection::~wxCriticalSection()
 {
-    delete m_critsect;
 }
 
 void wxCriticalSection::Enter()