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_update.h

    r3298 r3315  
    3131  char* userName;                       //!< The user logged in.
    3232
    33   bool getSystemInfo();
     33  bool getSystemInfo(void);
    3434 
    3535  // Window creation.
     
    5353
    5454#ifdef HAVE_GTK2
    55   static gint updateDataFunc (GtkWidget* w, GdkEventKey* event, void* info);
    56   static gint updateSourceFunc (GtkWidget* w, GdkEventKey* event, void* info);
     55  static gint updateDataFunc(GtkWidget* w, GdkEventKey* event, void* info);
     56  static gint updateSourceFunc(GtkWidget* w, GdkEventKey* event, void* info);
    5757#endif /* HAVE_GTK2 */
    5858
     
    7171  };
    7272
    73   static size_t curlWriteFunc (void* ptr, size_t size, size_t nmemb, FILE* stream);
    74   static size_t curlReadFunc (void* ptr, size_t size, size_t nmemb, FILE* stream);
    75   static int curlProgressFunc (ProgressBar* Bar, double totalSize, double progress, double upTotal, double upProgress);
     73  static size_t curlWriteFunc(void* ptr, size_t size, size_t nmemb, FILE* stream);
     74  static size_t curlReadFunc(void* ptr, size_t size, size_t nmemb, FILE* stream);
     75  static int curlProgressFunc(ProgressBar* bar, double totalSize, double progress, double upTotal, double upProgress);
    7676
    7777  static CURL* curlHandle;
     
    8585  static bool isDownloading;
    8686
    87   static bool download (void* fileInfo);
    88   static bool downloadWithStyle (void* fileInfo);
    89   static void* downloadThread (void* fileInfo);
     87  static bool download(void* fileInfo);
     88  static bool downloadWithStyle(void* fileInfo);
     89  static void* downloadThread(void* fileInfo);
    9090  static void* downloadThreadFinished(void* fileInfo);
    9191
     
    9494
    9595 public:
    96   OrxonoxGuiUpdate ();
    97   ~OrxonoxGuiUpdate ();
     96  OrxonoxGuiUpdate(void);
     97  ~OrxonoxGuiUpdate(void);
    9898 
    99   Widget* getWidget ();
     99  Widget* getWidget(void);
    100100#ifdef HAVE_CURL   
    101   void updateDataWindowCreate (void);
     101  void updateDataWindowCreate(void);
    102102  Button* updateDataWindowGetButton(void);
    103103
    104   void updateSourceWindowCreate (void);
     104  void updateSourceWindowCreate(void);
    105105  Button* updateSourceWindowGetButton(void);
    106106
    107   bool* checkForUpdates();
     107  bool* checkForUpdates(void);
    108108 
    109109#endif /* HAVE_CURL */
Note: See TracChangeset for help on using the changeset viewer.