Use wxLogTrace instead of wxLogDebug for trace messages

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25599 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Elliott
2004-02-08 07:07:04 +00:00
parent a619fa3f90
commit 4858097646
23 changed files with 75 additions and 75 deletions

View File

@@ -113,7 +113,7 @@ wxCheckBoxState wxCheckBox::DoGet3StateValue() const
void wxCheckBox::Cocoa_wxNSButtonAction(void)
{
wxLogDebug(wxT("Checkbox"));
wxLogTrace(wxTRACE_COCOA,wxT("Checkbox"));
// What we really want to do is override [NSCell -nextState] to return
// NSOnState in lieu of NSMixedState but this works (aside from the
// very slightly noticeable drawing of - and then a check) -DE