Ignore:
Timestamp:
Jun 2, 2008, 11:50:24 PM (16 years ago)
Author:
dai_9181
Message:

MDIINFO構造体をリファクタリング。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/abdev/src/WindowComponents/MdiWindow.cpp

    r489 r629  
    1 #include "stdafx.h"
    2 
    3 #include "../../common.h"
    4 
    5 using namespace ActiveBasic::IDE::WindowComponents;
    6 
    7 LRESULT MdiWindow::OnCreate(LPCREATESTRUCT lpcs){
    8     // フレームウィンドウのビューウィンドウを作成
    9     CreateMDIClient();
    10 
    11     // メッセージループにメッセージフィルタとアイドルハンドラを追加
    12     CMessageLoop* pLoop = Program::_Module.GetMessageLoop();
    13     pLoop->AddMessageFilter(this);
    14     pLoop->AddIdleHandler(this);
    15 
    16     return 0;
    17 }
Note: See TracChangeset for help on using the changeset viewer.