Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 3, 2005, 12:13:38 PM (19 years ago)
Author:
bensch
Message:

orxonox/branches/updater: code-standartisation updated in all files.

  1. member → this→member
  2. function (bla) → function(bla)
  3. other small fixes
File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/updater/src/gui/orxonox_gui_exec.h

    r3300 r3315  
    3333
    3434 public:
    35   OrxonoxGuiExec (Window* orxonoxGUI);
    36   ~OrxonoxGuiExec ();
     35  OrxonoxGuiExec(void);
     36  ~OrxonoxGuiExec(void);
    3737 
    38   Widget* getWidget ();
     38  Widget* getWidget(void);
    3939 
    40   void setFilename (char* filename);
     40  void setFilename(char* filename);
    4141  char* getConfigFile(void);
    42   int shouldsave();
    43   void writeToFile (Widget* widget);
    44   void writeFileText (Widget* widget, int depth);
    45   void readFromFile (Widget* widget);
    46   static void readFileText (Widget* widget, void* varInfo);
     42  int shouldsave(void);
     43  void writeToFile(Widget* widget);
     44  void writeFileText(Widget* widget, int depth);
     45  void readFromFile(Widget* widget);
     46  static void readFileText(Widget* widget, void* varInfo);
    4747  Widget* locateGroup(Widget* widget, char* groupName, int depth);
    4848
    4949#ifdef HAVE_GTK2
    50   static int startOrxonox (GtkWidget *widget, void* data);
    51   static int quitOrxonox (GtkWidget *widget, void* data);
     50  static int startOrxonox(GtkWidget *widget, void* data);
     51  static int quitOrxonox(GtkWidget *widget, void* data);
    5252#else /* HAVE_GTK2 */
    53   static int startOrxonox (void* widget, void* data);
    54   static int quitOrxonox (void* widget, void* data);
     53  static int startOrxonox(void* widget, void* data);
     54  static int quitOrxonox(void* widget, void* data);
    5555#endif /* HAVE_GTK2 */
    5656};
Note: See TracChangeset for help on using the changeset viewer.