View the DQSD CVS repository here:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/dqsd/
Update of /cvsroot/dqsd/dqsd/src/DQSDSearchWiz
In directory usw-pr-cvs1:/tmp/cvs-serv16542/src/DQSDSearchWiz
Modified Files:
AboutDlg.h
Log Message:
in work
Index: AboutDlg.h
===================================================================
RCS file: /cvsroot/dqsd/dqsd/src/DQSDSearchWiz/AboutDlg.h,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** AboutDlg.h 20 Sep 2002 04:43:48 -0000 1.8
--- AboutDlg.h 20 Sep 2002 05:10:32 -0000 1.9
***************
*** 78,85 ****
m_tip.Create(m_hWnd);
ATLASSERT(m_tip.IsWindow());
- m_tip.Activate(TRUE);
! m_tip.AddTool( GetDlgItem( IDOK ), _T("this is the OK button") );
! m_tip.AddTool( GetDlgItem( IDC_ChangeHistory ), _T("this is the change
history") );
return 1; // Let the system set the focus
--- 78,96 ----
m_tip.Create(m_hWnd);
ATLASSERT(m_tip.IsWindow());
! RECT rcDlg;
! GetWindowRect( &rcDlg );
!
! RECT rcDlgItem;
! CWindow( GetDlgItem( IDC_ChangeHistory ) ).GetWindowRect( &rcDlgItem );
!
! rcDlgItem.top -= rcDlg.top;
! rcDlgItem.left -= rcDlg.left;
! rcDlgItem.bottom -= rcDlg.top;
! rcDlgItem.right -= rcDlg.left;
!
! m_tip.AddTool( m_hWnd, _T("change history"), &rcDlgItem,
IDC_ChangeHistory );
!
! m_tip.Activate(TRUE);
return 1; // Let the system set the focus
-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
DQSD-CVS mailing list
https://lists.sourceforge.net/lists/listinfo/dqsd-cvs
DQSD CVS repository:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/dqsd/