]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/dialoged/src/symbtabl.h
Moved the cleanup code to an EVT_WINDOW_DESTROY handler.
[wxWidgets.git] / utils / dialoged / src / symbtabl.h
index 440b14b2224db514c3aaa18a1889455dcc9eed2f..b95bc9fa9e0bc968f9366b9bb04aed457ebdce3d 100644 (file)
@@ -21,8 +21,8 @@ class wxResourceSymbolTable: public wxObject
 public:
     wxResourceSymbolTable();
     ~wxResourceSymbolTable();
-
-// Operations
+    
+    // Operations
     bool ReadIncludeFile(const wxString& filename);
     bool WriteIncludeFile(const wxString& filename);
     void Clear();
@@ -31,22 +31,22 @@ public:
     bool RemoveSymbol(int id);
     void AddStandardSymbols();
     bool FillComboBox(wxComboBox* comboBox);
-
-// Accessors
+    
+    // Accessors
     wxString GetSymbolForId(int id);
     int GetIdForSymbol(const wxString& symbol);
     bool SymbolExists(const wxString& symbol) const;
     bool IdExists(int id) ;
     bool IsStandardSymbol(const wxString& symbol) const;
     int FindHighestId() ;
-
-// Implementation
-
-// Member variables
+    
+    // Implementation
+    
+    // Member variables
 protected:
     wxHashTable m_hashTable;
 };
 
 #endif
-    // _SYMBTABL_H_
+// _SYMBTABL_H_