summaryrefslogtreecommitdiff
path: root/src/trg-stats-dialog.c
diff options
context:
space:
mode:
authorGravatar Alan Fitton <ajf@eth0.org.uk>2012-01-25 11:59:32 +0000
committerGravatar Alan Fitton <ajf@eth0.org.uk>2012-01-25 11:59:32 +0000
commit5563da141e1fd0474f1eeedb967209c55227abae (patch)
tree79edb6566aecd22050117f9728b17e40156fd093 /src/trg-stats-dialog.c
parent4d57ef2197461c450aaaf79cdbb31b256ae0e81e (diff)
issue 175. make some (incomplete) changes as per the GTK+ best practices document - mainly using a pointer in the public class to access the private object (on a few important classes for now) for performance, and don't use C99 (C99 comments or mixed declarations/statements).
Diffstat (limited to 'src/trg-stats-dialog.c')
-rw-r--r--src/trg-stats-dialog.c31
1 files changed, 18 insertions, 13 deletions
diff --git a/src/trg-stats-dialog.c b/src/trg-stats-dialog.c
index 7348d5e..b4b215a 100644
--- a/src/trg-stats-dialog.c
+++ b/src/trg-stats-dialog.c
@@ -114,8 +114,9 @@ static GtkTreeRowReference *stats_dialog_add_statistic(GtkListStore *
return rr;
}
-static void update_statistic(GtkTreeRowReference * rr, gchar * session,
- gchar * cumulat)
+static void
+update_statistic(GtkTreeRowReference * rr, gchar * session,
+ gchar * cumulat)
{
GtkTreePath *path = gtk_tree_row_reference_get_path(rr);
GtkTreeModel *model = gtk_tree_row_reference_get_model(rr);
@@ -139,8 +140,9 @@ static JsonObject *get_cumulat_arg(JsonObject * args)
return json_object_get_object_member(args, "cumulative-stats");
}
-static void update_int_stat(JsonObject * args, GtkTreeRowReference * rr,
- gchar * jsonKey)
+static void
+update_int_stat(JsonObject * args, GtkTreeRowReference * rr,
+ gchar * jsonKey)
{
gchar session_val[32];
gchar cumulat_val[32];
@@ -153,8 +155,9 @@ static void update_int_stat(JsonObject * args, GtkTreeRowReference * rr,
update_statistic(rr, session_val, cumulat_val);
}
-static void update_size_stat(JsonObject * args, GtkTreeRowReference * rr,
- gchar * jsonKey)
+static void
+update_size_stat(JsonObject * args, GtkTreeRowReference * rr,
+ gchar * jsonKey)
{
gchar session_val[32];
gchar cumulat_val[32];
@@ -169,8 +172,9 @@ static void update_size_stat(JsonObject * args, GtkTreeRowReference * rr,
update_statistic(rr, session_val, cumulat_val);
}
-static void update_time_stat(JsonObject * args, GtkTreeRowReference * rr,
- gchar * jsonKey)
+static void
+update_time_stat(JsonObject * args, GtkTreeRowReference * rr,
+ gchar * jsonKey)
{
gchar session_val[32];
gchar cumulat_val[32];
@@ -192,6 +196,7 @@ static gboolean on_stats_reply(gpointer data)
trg_response *response = (trg_response *) data;
TrgStatsDialogPrivate *priv;
JsonObject *args;
+ char versionStr[32];
if (!TRG_IS_STATS_DIALOG(response->cb_data)) {
trg_response_free(response);
@@ -203,7 +208,6 @@ static gboolean on_stats_reply(gpointer data)
if (response->status == CURLE_OK) {
args = get_arguments(response->obj);
- char versionStr[32];
g_snprintf(versionStr, sizeof(versionStr), "Transmission %s",
trg_client_get_version_string(priv->client));
update_statistic(priv->rr_version, versionStr, "");
@@ -240,8 +244,9 @@ static gboolean trg_update_stats_timerfunc(gpointer data)
return FALSE;
}
-static void trg_stats_add_column(GtkTreeView * tv, gint index,
- gchar * title, gint width)
+static void
+trg_stats_add_column(GtkTreeView * tv, gint index, gchar * title,
+ gint width)
{
GtkCellRenderer *renderer = gtk_cell_renderer_text_new();
GtkTreeViewColumn *column =
@@ -256,8 +261,8 @@ static void trg_stats_add_column(GtkTreeView * tv, gint index,
static GObject *trg_stats_dialog_constructor(GType type,
guint
n_construct_properties,
- GObjectConstructParam
- * construct_params)
+ GObjectConstructParam *
+ construct_params)
{
GtkWidget *tv;