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/include/status.hpp

    r14 r39  
    88{
    99  public :
    10   virtual void push(char *name, visual_object *show) = 0;
     10  virtual void push(char const *name, visual_object *show) = 0;
    1111  virtual void update(int percentage) = 0;
    1212  virtual void pop() = 0;
     
    2424  text_status_node *first;
    2525  text_status_manager();
    26   virtual void push(char *name, visual_object *show);
     26  virtual void push(char const *name, visual_object *show);
    2727  virtual void update(int percentage);
    2828  virtual void pop();
     
    3535{
    3636  public :
    37   stack_stat(char *st, visual_object *show=NULL) { if (stat_man) stat_man->push(st,show); }
     37  stack_stat(char const *st, visual_object *show=NULL) { if (stat_man) stat_man->push(st,show); }
    3838  ~stack_stat() { if (stat_man) stat_man->pop(); }
    3939} ;
Note: See TracChangeset for help on using the changeset viewer.