Show
Ignore:
Timestamp:
08/19/10 23:35:41 (21 months ago)
Author:
Carsten
Message:

CaWE GUI Editor: Rewrote/fixed broken "delete windows" command.

Files:
1 modified

Legend:

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

    r36 r123  
    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}