Makefile tweaks
Threads work now under wxGTK and glibc 2 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1266 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -62,6 +62,8 @@ public:
|
||||
virtual void Centre( int direction = wxHORIZONTAL );
|
||||
|
||||
virtual void GetClientSize( int *width, int *height ) const;
|
||||
wxSize GetClientSize() const { int w, h; GetClientSize(& w, & h); return wxSize(w, h); }
|
||||
|
||||
virtual void SetClientSize( int const width, int const height );
|
||||
|
||||
virtual void SetSize( int x, int y, int width, int height,
|
||||
|
@@ -62,6 +62,8 @@ public:
|
||||
virtual void Centre( int direction = wxHORIZONTAL );
|
||||
|
||||
virtual void GetClientSize( int *width, int *height ) const;
|
||||
wxSize GetClientSize() const { int w, h; GetClientSize(& w, & h); return wxSize(w, h); }
|
||||
|
||||
virtual void SetClientSize( int const width, int const height );
|
||||
|
||||
virtual void SetSize( int x, int y, int width, int height,
|
||||
|
@@ -132,8 +132,6 @@ public:
|
||||
// Called when thread exits.
|
||||
virtual void OnExit();
|
||||
|
||||
// Returns the wxThread object which corresponds to the ID.
|
||||
static wxThread *GetThreadFromID(unsigned long id);
|
||||
protected:
|
||||
// In case, the DIFFER flag is true, enables another thread to kill this one.
|
||||
void TestDestroy();
|
||||
|
Reference in New Issue
Block a user