* const stuff

git-svn-id: svn://svn.icculus.org/gtkradiant/GtkRadiant/trunk@282 8a3a26a2-13c4-0310-b231-cf6edde360e5
This commit is contained in:
mattn 2008-06-26 13:58:20 +00:00
parent b98f83c4ee
commit 4702591409
1 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ typedef struct undo_s
double time; //time operation was performed double time; //time operation was performed
int id; //every undo has an unique id int id; //every undo has an unique id
int done; //true when undo is build int done; //true when undo is build
char *operation; //name of the operation const char *operation; //name of the operation
brush_t brushlist; //deleted brushes brush_t brushlist; //deleted brushes
entity_t entitylist; //deleted entities entity_t entitylist; //deleted entities
struct undo_s *prev, *next; //next and prev undo in list struct undo_s *prev, *next; //next and prev undo in list
@ -223,7 +223,7 @@ void Undo_FreeFirstUndo(void)
Undo_GeneralStart Undo_GeneralStart
============= =============
*/ */
void Undo_GeneralStart(char *operation) void Undo_GeneralStart(const char *operation)
{ {
undo_t *undo; undo_t *undo;
brush_t *pBrush; brush_t *pBrush;