查看: 1587|回复: 1

OSG程序退出时的错误

[复制链接]

该用户从未签到

发表于 2009-3-28 22:05:37 | 显示全部楼层 |阅读模式
红色为报错的语句,完全不知道错在什么地方,大家帮我看看,谢谢


Winfrm.ccp

Void CFrameWnd::OnActivate(UINT nState, CWnd* pWndOther, BOOL bMinimized)
{

CWnd::OnActivate(nState, pWndOther, bMinimized);

// get top level frame unless this is a child window

// determine if window should be active or not

CFrameWnd* pTopLevel = (GetStyle() & WS_CHILD) ? this : GetTopLevelFrame();

ENSURE_VALID(pTopLevel);

CWnd* pActive = (nState == WA_INACTIVE ? pWndOther : this);

BOOL bStayActive = (pActive != NULL) ?

(pTopLevel == pActive ||

(pTopLevel == pActive->GetTopLevelFrame() &&

(pActive == pTopLevel ||

pActive->SendMessage(WM_FLOATSTATUS, FS_SYNCACTIVE) != 0)))

: FALSE;

pTopLevel->m_nFlags &= ~WF_STAYACTIVE;

if (bStayActive)

pTopLevel->m_nFlags |= WF_STAYACTIVE;

// sync floating windows to the new state

NotifyFloatingWindows(bStayActive ? FS_ACTIVATE : FS_DEACTIVATE);

// get active view (use active frame if no active view)

CView* pActiveView = GetActiveView();

if (pActiveView == NULL)

pActiveView = GetActiveFrame()->GetActiveView();

// when frame gets activated, re-activate current view

if (pActiveView != NULL)

{

if (nState != WA_INACTIVE && !bMinimized)

pActiveView->OnActivateView(TRUE, pActiveView, pActiveView);

// always notify the view of frame activations

pActiveView->OnActivateFrame(nState, this);

}
}

Winfrm.ccp

该用户从未签到

发表于 2009-3-29 09:22:04 | 显示全部楼层
您这是VC的编译错误?烦请告知错误提示是什么。this是const CFrameWnd*类型,通常不能直接赋给CFrameWnd*,这和OSG并无直接关系。
您需要登录后才可以回帖 登录 | 注册

本版积分规则

OSG中国官方论坛-有您OSG在中国才更好

网站简介:osgChina是国内首个三维相关技术开源社区,旨在为国内更多的技术开发人员提供最前沿的技术资讯,为更多的三维从业者提供一个学习、交流的技术平台。

联系我们

  • 工作时间:09:00--18:00
  • 反馈邮箱:1315785073@qq.com
快速回复 返回顶部 返回列表