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/EditorData/Window.hpp

    r36 r124  
    5050 
    5151        /// Checks the name uniqueness of a new name string within the windows siblings. 
    52         /// @param Name Name to check for uniqueness. 
     52        /// @param Name    Name to check for uniqueness. 
    5353        /// @return Whether this name is unique. 
    54         bool CheckNameUniqueness(wxString Name); 
     54        bool CheckNameUniqueness(const wxString& Name) const; 
     55 
     56        /// Helper method to check and auto-repair the uniqueness of the name of this window. 
     57        void RepairNameUniqueness(); 
    5558 
    5659        GuiDocumentT* GetGuiDoc() { return m_GuiDocument; } 
     
    6265 
    6366        GuiDocumentT* m_GuiDocument; 
    64  
    65         /// Helper method to check and repair the uniqueness of the name of this window. 
    66         void RepairNameUniqueness(); 
     67        unsigned int  m_Counter; 
    6768    }; 
    6869}