- Timestamp:
- 08/20/10 15:06:58 (21 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
cafu/branches/cafu_to_wx/CaWE/GuiEditor/EditorData/Window.hpp
r36 r124 50 50 51 51 /// 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. 53 53 /// @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(); 55 58 56 59 GuiDocumentT* GetGuiDoc() { return m_GuiDocument; } … … 62 65 63 66 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; 67 68 }; 68 69 }
