Changeset 282
- Timestamp:
- 06/26/08 08:58:20 (4 months ago)
- Files:
-
- GtkRadiant/trunk/radiant/undo.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
GtkRadiant/trunk/radiant/undo.cpp
r264 r282 45 45 int id; //every undo has an unique id 46 46 int done; //true when undo is build 47 c har *operation; //name of the operation47 const char *operation; //name of the operation 48 48 brush_t brushlist; //deleted brushes 49 49 entity_t entitylist; //deleted entities … … 224 224 ============= 225 225 */ 226 void Undo_GeneralStart(c har *operation)226 void Undo_GeneralStart(const char *operation) 227 227 { 228 228 undo_t *undo;
