Show
Ignore:
Timestamp:
08/20/10 15:06:58 (21 months ago)
Author:
Carsten
Message:

Merged latest changes from trunk into branches/cafu_to_wx.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • cafu/branches/cafu_to_wx/CaWE/GuiEditor/Commands/Delete.hpp

    r36 r124  
    3333namespace GuiEditor 
    3434{ 
     35    class CommandSelectT; 
    3536    class GuiDocumentT; 
     37 
    3638 
    3739    class CommandDeleteT : public CommandT 
     
    5355        GuiDocumentT* m_GuiDocument; 
    5456 
    55         ArrayT<cf::GuiSys::WindowT*> m_Parents; 
    56         ArrayT<unsigned long >       m_Indexes; 
    57         ArrayT<cf::GuiSys::WindowT*> m_DeleteWindows; 
     57        ArrayT<cf::GuiSys::WindowT*> m_Windows; 
     58        ArrayT<unsigned long>        m_Indices; 
     59        CommandSelectT*              m_CommandSelect;   ///< The command that unselects all windows before they are deleted. 
    5860    }; 
    5961}