fixes to bug 5434

This commit is contained in:
varada%netscape.com 1999-11-01 19:14:29 +00:00
parent 8a136564be
commit 92ef2f5fa0
2 changed files with 4 additions and 3 deletions

View File

@ -175,7 +175,6 @@ int CImgDlg::DoModal()
BOOL CImgDlg::Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID, CCreateContext* pContext)
{
// TODO: Add your specialized code here and/or call the base class
return CDialog::Create(IDD, pParentWnd);
}
@ -201,7 +200,8 @@ BOOL CImgDlg::OnInitDialog()
CDialog::OnInitDialog();
SetWindowText(imageTitle);
// TODO: Add extra initialization here
SetWindowPos(&wndTop,0,0,4,8,SWP_NOSIZE);
// TODO: Add extra initialization here
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE

View File

@ -58,7 +58,6 @@ END_MESSAGE_MAP()
BOOL CWizHelp::Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID, CCreateContext* pContext)
{
// TODO: Add your specialized code here and/or call the base class
return CDialog::Create(IDD, pParentWnd);
}
@ -186,6 +185,8 @@ BOOL CWizHelp::OnInitDialog()
int k=Button1->Create("Button", BS_PUSHBUTTON | WS_TABSTOP|WS_VISIBLE, tmpRect, this, ID);
*/ }
SetWindowPos(&wndTop,0,0,4,8,SWP_NOSIZE);
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}