* prgodlgg.h: Update() use wxString instead of 'char *'

* wxThread: fixes (all should work fluently now)
* wxSocket: it is at last usable on my computer
     GTK/GLIB problem : reenabling the idle event propagation causes very
     strange problem (Instruction pointer/memory)


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2490 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Guilhem Lavaux
1999-05-17 18:10:57 +00:00
parent 49828363f8
commit 9111db6802
11 changed files with 86 additions and 59 deletions

View File

@@ -179,7 +179,7 @@ wxWindowBase::~wxWindowBase()
// we weren't a dialog class
wxTopLevelWindows.DeleteObject(this);
wxASSERT_MSG( GetChildren().GetCount() == 0, "children not destroyed" );
wxASSERT_MSG( GetChildren().GetCount() == 0, _T("children not destroyed") );
if ( m_windowValidator )
delete m_windowValidator;
@@ -253,12 +253,12 @@ bool wxWindowBase::DestroyChildren()
wxWindow *child = node->GetData();
wxASSERT_MSG( child, "children list contains empty nodes" );
wxASSERT_MSG( child, _T("children list contains empty nodes") );
delete child;
wxASSERT_MSG( !GetChildren().Find(child),
"child didn't remove itself using RemoveChild()" );
_T("child didn't remove itself using RemoveChild()") );
}
return TRUE;
@@ -575,7 +575,7 @@ wxWindow *wxWindowBase::FindWindow( const wxString& name )
void wxWindowBase::MakeModal(bool WXUNUSED(modal))
{
wxFAIL_MSG("TODO");
wxFAIL_MSG(_T("TODO"));
}
bool wxWindowBase::Validate()