[GME-commit]
GMESRC/GME/GMEActiveBrowser ActiveBrowsePropertySheet.cpp,1.1,1.2
ActiveBrowsePropertySheet.h,1.1,1.2
gme-commit at list.isis.vanderbilt.edu
gme-commit at list.isis.vanderbilt.edu
Wed Dec 6 19:23:08 CST 2006
Update of /project/gme-repository/GMESRC/GME/GMEActiveBrowser
In directory escher:/tmp/cvs-serv32672
Modified Files:
ActiveBrowsePropertySheet.cpp ActiveBrowsePropertySheet.h
Log Message:
CPropertySheetEx obsolete.
CPropertySheetEx class reference replaced by CPropertySheet.
It prevented IntelliSense and class properties were not shown for ActiveBrowsePropertySheet.
CVS User: Zoltan Molnar, ISIS (zolmol)
Index: ActiveBrowsePropertySheet.cpp
===================================================================
RCS file: /project/gme-repository/GMESRC/GME/GMEActiveBrowser/ActiveBrowsePropertySheet.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ActiveBrowsePropertySheet.cpp 1 Mar 2002 21:52:00 -0000 1.1
--- ActiveBrowsePropertySheet.cpp 6 Dec 2006 19:23:06 -0000 1.2
***************
*** 14,21 ****
// CActiveBrowserPropertySheet
! IMPLEMENT_DYNAMIC(CActiveBrowserPropertySheet, CPropertySheetEx)
CActiveBrowserPropertySheet::CActiveBrowserPropertySheet(CWnd* pWndParent)
! : CPropertySheetEx(IDS_PROPSHT_CAPTION, pWndParent)
{
// Add all of the property pages here. Note that
--- 14,21 ----
// CActiveBrowserPropertySheet
! IMPLEMENT_DYNAMIC(CActiveBrowserPropertySheet, CPropertySheet)
CActiveBrowserPropertySheet::CActiveBrowserPropertySheet(CWnd* pWndParent)
! : CPropertySheet(IDS_PROPSHT_CAPTION, pWndParent)
{
// Add all of the property pages here. Note that
***************
*** 36,40 ****
! BEGIN_MESSAGE_MAP(CActiveBrowserPropertySheet, CPropertySheetEx)
//{{AFX_MSG_MAP(CActiveBrowserPropertySheet)
ON_WM_SIZE()
--- 36,40 ----
! BEGIN_MESSAGE_MAP(CActiveBrowserPropertySheet, CPropertySheet)
//{{AFX_MSG_MAP(CActiveBrowserPropertySheet)
ON_WM_SIZE()
***************
*** 48,52 ****
void CActiveBrowserPropertySheet::PostNcDestroy()
{
! CPropertySheetEx::PostNcDestroy();
delete this;
}
--- 48,52 ----
void CActiveBrowserPropertySheet::PostNcDestroy()
{
! CPropertySheet::PostNcDestroy();
delete this;
}
***************
*** 98,102 ****
// TODO: Add your specialized code here and/or call the base class
! return CPropertySheetEx::PreTranslateMessage(pMsg);
}
--- 98,102 ----
// TODO: Add your specialized code here and/or call the base class
! return CPropertySheet::PreTranslateMessage(pMsg);
}
Index: ActiveBrowsePropertySheet.h
===================================================================
RCS file: /project/gme-repository/GMESRC/GME/GMEActiveBrowser/ActiveBrowsePropertySheet.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ActiveBrowsePropertySheet.h 1 Mar 2002 21:52:00 -0000 1.1
--- ActiveBrowsePropertySheet.h 6 Dec 2006 19:23:06 -0000 1.2
***************
*** 14,18 ****
// CActiveBrowserPropertySheet
! class CActiveBrowserPropertySheet : public CPropertySheetEx
{
DECLARE_DYNAMIC(CActiveBrowserPropertySheet)
--- 14,18 ----
// CActiveBrowserPropertySheet
! class CActiveBrowserPropertySheet : public CPropertySheet
{
DECLARE_DYNAMIC(CActiveBrowserPropertySheet)
More information about the GME-commit
mailing list