OSDN Git Service

2012/01/13 1:14:04
authorqwerty2501 <riot313@gmail.com>
Thu, 12 Jan 2012 16:14:04 +0000 (01:14 +0900)
committerqwerty2501 <riot313@gmail.com>
Thu, 12 Jan 2012 16:14:04 +0000 (01:14 +0900)
nlite.suo
nlite/nlite_commentview.cpp

index 4207cf1..bc58913 100644 (file)
Binary files a/nlite.suo and b/nlite.suo differ
index 13ab8fa..bc2cf8f 100644 (file)
@@ -192,14 +192,14 @@ VOID CCommentView::OnChatReceveSettle(UINT_PTR chatNo,UINT_PTR commentCountSum){
        vScrollInfo.nMax = commentCountSum;
        this->SetScrollInfo(SB_VERT,&vScrollInfo);
 
-       idumpln(TEXT("chatreceve_start"));
+       idumpln(TEXT("chatreceve_start:%d"),GetCurrentThreadId());
        commentlist.Lock();
        vScrollInfo.nPage = m_commentListWindow.CalcScrolPage();
        commentlist.Unlock();
        vScrollInfo.fMask = SIF_PAGE;
        this->SetScrollInfo(SB_VERT,&vScrollInfo);
        m_commentListWindow.Invalidate();
-       idumpln(TEXT("chatreceve_end"));
+       idumpln(TEXT("chatreceve_end:%d"),GetCurrentThreadId());
        return;
 }
 
@@ -564,8 +564,8 @@ CCommentListWindow::~CCommentListWindow(){
 
 VOID CCommentListWindow::OnPaint(HDC hdc){
 
-       ::Sleep(500);
-       dumpln(TEXT("CCommentListWindow::OnPaint\8aJ\8en"));
+       
+       dumpln(TEXT("CCommentListWindow::OnPaint\8aJ\8enthread:%d"),GetCurrentThreadId());
        RECT windowRect;
 
        RECT clientRect;
@@ -620,7 +620,7 @@ VOID CCommentListWindow::OnPaint(HDC hdc){
        HDC selfDC = this->BeginPaint(&ps);
        ::BitBlt(selfDC,0,0,windowRect.right,windowRect.bottom,m_memoryDC,0,0,SRCCOPY);
        this->EndPaint(&ps);
-       dumpln(TEXT("CCommentListWindow::OnPaint\8fI\97¹"));
+       dumpln(TEXT("CCommentListWindow::OnPaint\8fI\97¹:%d"),GetCurrentThreadId());
        return;
 }