wyBool
FrameWindowSplitter::Resizeall()
{
	MDIWindow	*	pcquerywnd = (MDIWindow*)GetWindowLongPtr(m_hwndparent, GWLP_USERDATA);

    CustomTab_SetPaintTimer(pcquerywnd->m_pctabmodule->m_hwnd);
	pcquerywnd->Resize();

	return wyTrue;
}
wyBool
TabEditorSplitter::Resizeall()
{
	MDIWindow *wnd;
	//TabTypes   *tabtype;

	wnd = GetActiveWin();

	if(!wnd || !wnd->m_pctabmodule)
		return wyFalse;
	
    /*
	tabtype = wnd->m_pctabmodule->GetActiveTabType();

	if(!tabtype)
		return wyFalse;

    tabtype->Resize(wyTrue);
    */

    CustomTab_SetPaintTimer(wnd->m_pctabmodule->m_hwnd);
    wnd->Resize();
	return wyTrue;
}