Ignore:
Timestamp:
Mar 2, 2008, 12:29:06 AM (15 years ago)
Author:
Sam Hocevar
Message:
  • Fix almost 2,000 warnings by using proper "const" keywords where needed.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • abuse/trunk/src/imlib/status.cpp

    r2 r39  
    1212  visual_object *show;
    1313  int last_update;
    14   text_status_node(char *Name, visual_object *Show, text_status_node *Next)
     14  text_status_node(char const *Name, visual_object *Show, text_status_node *Next)
    1515  { name=strcpy((char *)jmalloc(strlen(Name)+1,"status name"),Name);
    1616    show=Show;
     
    2929}
    3030
    31 void text_status_manager::push(char *name, visual_object *show)
     31void text_status_manager::push(char const *name, visual_object *show)
    3232{
    3333  level++;
Note: See TracChangeset for help on using the changeset viewer.