projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
move pending event processing back to wxApp (these methods were moved into wxEventLoo...
[wxWidgets.git]
/
include
/
wx
/
thread.h
diff --git
a/include/wx/thread.h
b/include/wx/thread.h
index 0b237cb4f2a787ee34c2f1498284249c1dfd0643..fc0ac2759c1bb6ceadf1bdbf1a821634707ffff9 100644
(file)
--- a/
include/wx/thread.h
+++ b/
include/wx/thread.h
@@
-161,7
+161,7
@@
protected:
friend class wxConditionInternal;
friend class wxConditionInternal;
- DECLARE_NO_COPY_CLASS(wxMutex)
+ wxDECLARE_NO_COPY_CLASS(wxMutex);
};
// a helper class which locks the mutex in the ctor and unlocks it in the dtor:
};
// a helper class which locks the mutex in the ctor and unlocks it in the dtor:
@@
-266,7
+266,7
@@
private:
};
#endif // Unix&OS2/Win32
};
#endif // Unix&OS2/Win32
- DECLARE_NO_COPY_CLASS(wxCriticalSection)
+ wxDECLARE_NO_COPY_CLASS(wxCriticalSection);
};
#if wxCRITSECT_IS_MUTEX
};
#if wxCRITSECT_IS_MUTEX
@@
-301,7
+301,7
@@
public:
private:
wxCriticalSection& m_critsect;
private:
wxCriticalSection& m_critsect;
- DECLARE_NO_COPY_CLASS(wxCriticalSectionLocker)
+ wxDECLARE_NO_COPY_CLASS(wxCriticalSectionLocker);
};
// ----------------------------------------------------------------------------
};
// ----------------------------------------------------------------------------
@@
-364,7
+364,7
@@
public:
private:
wxConditionInternal *m_internal;
private:
wxConditionInternal *m_internal;
- DECLARE_NO_COPY_CLASS(wxCondition)
+ wxDECLARE_NO_COPY_CLASS(wxCondition);
};
#if WXWIN_COMPATIBILITY_2_6
};
#if WXWIN_COMPATIBILITY_2_6
@@
-409,7
+409,7
@@
public:
private:
wxSemaphoreInternal *m_internal;
private:
wxSemaphoreInternal *m_internal;
- DECLARE_NO_COPY_CLASS(wxSemaphore)
+ wxDECLARE_NO_COPY_CLASS(wxSemaphore);
};
// ----------------------------------------------------------------------------
};
// ----------------------------------------------------------------------------
@@
-506,7
+506,7
@@
public:
// does it!
//
// will fill the rc pointer with the thread exit code if it's !NULL
// does it!
//
// will fill the rc pointer with the thread exit code if it's !NULL
- wxThreadError Delete(ExitCode *rc =
(ExitCode *)
NULL);
+ wxThreadError Delete(ExitCode *rc = NULL);
// waits for a joinable thread to finish and returns its exit code
//
// waits for a joinable thread to finish and returns its exit code
//