Code cleanup

This commit is contained in:
Pierre Pronchery 2010-11-15 01:18:59 +00:00
parent f7f4acd25a
commit 08c6243897

View File

@ -49,15 +49,15 @@
/* Download */ /* Download */
/* types */ /* types */
typedef struct _Prefs typedef struct _DownloadPrefs
{ {
char const * output; char const * output;
char const * user_agent; char const * user_agent;
} Prefs; } DownloadPrefs;
typedef struct _Download typedef struct _Download
{ {
Prefs * prefs; DownloadPrefs * prefs;
char * url; char * url;
struct timeval tv; struct timeval tv;
@ -94,7 +94,7 @@ static unsigned int _download_cnt = 0;
/* prototypes */ /* prototypes */
static Download * _download_new(Prefs * prefs, char const * url); static Download * _download_new(DownloadPrefs * prefs, char const * url);
static void _download_delete(Download * download); static void _download_delete(Download * download);
static int _download_cancel(Download * download); static int _download_cancel(Download * download);
static int _download_error(Download * download, char const * message, int ret); static int _download_error(Download * download, char const * message, int ret);
@ -120,7 +120,7 @@ static void _download_label(GtkWidget * vbox, PangoFontDescription * bold,
GtkSizeGroup * left, GtkSizeGroup * right, char const * label, GtkSizeGroup * left, GtkSizeGroup * right, char const * label,
GtkWidget ** widget, char const * text); GtkWidget ** widget, char const * text);
static Download * _download_new(Prefs * prefs, char const * url) static Download * _download_new(DownloadPrefs * prefs, char const * url)
{ {
Download * download; Download * download;
char buf[256]; char buf[256];
@ -514,7 +514,7 @@ static void _http_timeout(Download * download)
static gboolean _download_on_idle(gpointer data) static gboolean _download_on_idle(gpointer data)
{ {
Download * download = data; Download * download = data;
Prefs * prefs = download->prefs; DownloadPrefs * prefs = download->prefs;
char * p = NULL; char * p = NULL;
#ifdef WITH_WEBKIT #ifdef WITH_WEBKIT
WebKitNetworkRequest * request; WebKitNetworkRequest * request;
@ -620,7 +620,7 @@ static int _usage(void)
/* main */ /* main */
int main(int argc, char * argv[]) int main(int argc, char * argv[])
{ {
Prefs prefs; DownloadPrefs prefs;
int o; int o;
Download ** download; Download ** download;
int cnt; int cnt;