[Commits] (davids) wxColumnHeader - removed debug-only log stmts.
that fail to compile on GTK (why?)
commits at osafoundation.org
commits at osafoundation.org
Tue Feb 15 14:35:34 PST 2005
Commit by: davids
Modified files:
internal/wxPython-2.5/src/generic/colheader.cpp 1.4 1.5
Log message:
wxColumnHeader - removed debug-only log stmts. that fail to compile on GTK (why?)
ViewCVS links:
http://cvs.osafoundation.org/index.cgi/internal/wxPython-2.5/src/generic/colheader.cpp.diff?r1=text&tr1=1.4&r2=text&tr2=1.5
Index: internal/wxPython-2.5/src/generic/colheader.cpp
diff -u internal/wxPython-2.5/src/generic/colheader.cpp:1.4 internal/wxPython-2.5/src/generic/colheader.cpp:1.5
--- internal/wxPython-2.5/src/generic/colheader.cpp:1.4 Tue Feb 15 14:11:26 2005
+++ internal/wxPython-2.5/src/generic/colheader.cpp Tue Feb 15 14:35:32 2005
@@ -378,7 +378,7 @@
}
// unknown message - unhandled - fall through
- wxLogDebug( _T("unknown hittest code") );
+ //wxLogDebug( _T("wxColumnHeader::OnClick - unknown hittest code") );
case wxCOLUMNHEADER_HITTEST_NoPart:
event.Skip();
@@ -733,7 +733,7 @@
HWND targetViewRef = GetHwnd();
if (targetViewRef == NULL)
{
- wxLogDebug( _T("targetViewRef = GetHwnd failed (NULL)") );
+ //wxLogDebug( _T("targetViewRef = GetHwnd failed (NULL)") );
return resultV;
}
@@ -829,7 +829,7 @@
targetViewRef = GetHwnd();
if (targetViewRef == NULL)
{
- wxLogDebug( _T("targetViewRef = GetHwnd failed (NULL)") );
+ //wxLogDebug( _T("targetViewRef = GetHwnd failed (NULL)") );
return (-1L);
}
@@ -858,7 +858,7 @@
targetViewRef = GetHwnd();
if (targetViewRef == NULL)
{
- wxLogDebug( _T("targetViewRef = GetHwnd failed (NULL)") );
+ //wxLogDebug( _T("targetViewRef = GetHwnd failed (NULL)") );
return (-1L);
}
@@ -882,7 +882,7 @@
targetViewRef = GetHwnd();
if (targetViewRef == NULL)
{
- wxLogDebug( _T("targetViewRef = GetHwnd failed (NULL)") );
+ //wxLogDebug( _T("targetViewRef = GetHwnd failed (NULL)") );
return (-1L);
}
@@ -919,7 +919,7 @@
targetViewRef = GetHwnd();
if (targetViewRef == NULL)
{
- wxLogDebug( _T("targetViewRef = GetHwnd failed (NULL)") );
+ //wxLogDebug( _T("targetViewRef = GetHwnd failed (NULL)") );
return (-1L);
}
@@ -1225,7 +1225,7 @@
// is this item beyond the right edge?
if (m_OriginX >= m_NativeBoundsR.width)
{
- wxLogDebug( _T("wxColumnHeaderItem::DrawSelf - bailout!") );
+ //wxLogDebug( _T("wxColumnHeaderItem::DrawSelf - bailout!") );
return (-1L);
}
More information about the Commits
mailing list