Code beautification
This commit is contained in:
parent
1de65cb9e0
commit
85d13ff611
@ -53,9 +53,9 @@ enum {
|
|||||||
};
|
};
|
||||||
|
|
||||||
struct cc_search {
|
struct cc_search {
|
||||||
const gchar *target;
|
const gchar *target;
|
||||||
GtkTreeIter *ret_iter;
|
GtkTreeIter *ret_iter;
|
||||||
gchar *ret_code;
|
gchar *ret_code;
|
||||||
};
|
};
|
||||||
|
|
||||||
G_DEFINE_TYPE_WITH_PRIVATE(AgChartEdit, ag_chart_edit, GTK_TYPE_GRID);
|
G_DEFINE_TYPE_WITH_PRIVATE(AgChartEdit, ag_chart_edit, GTK_TYPE_GRID);
|
||||||
@ -67,9 +67,9 @@ static guint signals[SIGNAL_COUNT];
|
|||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
ag_chart_edit_find_country(GtkTreeModel *model,
|
ag_chart_edit_find_country(GtkTreeModel *model,
|
||||||
GtkTreePath *path,
|
GtkTreePath *path,
|
||||||
GtkTreeIter *iter,
|
GtkTreeIter *iter,
|
||||||
struct cc_search *search)
|
struct cc_search *search)
|
||||||
{
|
{
|
||||||
gchar *name,
|
gchar *name,
|
||||||
*ccode;
|
*ccode;
|
||||||
@ -83,7 +83,7 @@ ag_chart_edit_find_country(GtkTreeModel *model,
|
|||||||
);
|
);
|
||||||
|
|
||||||
if (g_utf8_collate(search->target, name) == 0) {
|
if (g_utf8_collate(search->target, name) == 0) {
|
||||||
found = TRUE;
|
found = TRUE;
|
||||||
search->ret_iter = gtk_tree_iter_copy(iter);
|
search->ret_iter = gtk_tree_iter_copy(iter);
|
||||||
search->ret_code = ccode;
|
search->ret_code = ccode;
|
||||||
} else {
|
} else {
|
||||||
@ -103,7 +103,7 @@ ag_chart_edit_find_country(GtkTreeModel *model,
|
|||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
ag_chart_edit_country_changed_cb(GtkSearchEntry *country,
|
ag_chart_edit_country_changed_cb(GtkSearchEntry *country,
|
||||||
AgChartEdit *chart_edit)
|
AgChartEdit *chart_edit)
|
||||||
{
|
{
|
||||||
struct cc_search search;
|
struct cc_search search;
|
||||||
GET_PRIV(chart_edit);
|
GET_PRIV(chart_edit);
|
||||||
@ -301,7 +301,7 @@ ag_chart_edit_get_longitude(AgChartEdit *chart_edit)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
ag_chart_edit_set_from_timestamp(AgChartEdit *chart_edit,
|
ag_chart_edit_set_from_timestamp(AgChartEdit *chart_edit,
|
||||||
GsweTimestamp *timestamp)
|
GsweTimestamp *timestamp)
|
||||||
{
|
{
|
||||||
GET_PRIV(chart_edit);
|
GET_PRIV(chart_edit);
|
||||||
@ -353,7 +353,7 @@ ag_chart_edit_set_from_timestamp(AgChartEdit *chart_edit,
|
|||||||
* returns @timestamp after modifying it.
|
* returns @timestamp after modifying it.
|
||||||
*/
|
*/
|
||||||
GsweTimestamp *
|
GsweTimestamp *
|
||||||
ag_chart_edit_get_to_timestamp(AgChartEdit *chart_edit,
|
ag_chart_edit_get_to_timestamp(AgChartEdit *chart_edit,
|
||||||
GsweTimestamp *timestamp)
|
GsweTimestamp *timestamp)
|
||||||
{
|
{
|
||||||
GET_PRIV(chart_edit);
|
GET_PRIV(chart_edit);
|
||||||
@ -380,7 +380,7 @@ ag_chart_edit_get_to_timestamp(AgChartEdit *chart_edit,
|
|||||||
GTK_SPIN_BUTTON(priv->timezone)
|
GTK_SPIN_BUTTON(priv->timezone)
|
||||||
);
|
);
|
||||||
|
|
||||||
if (timestamp && GSWE_IS_TIMESTAMP(timestamp)) {
|
if (timestamp && GSWE_IS_TIMESTAMP(timestamp)) {
|
||||||
gswe_timestamp_set_gregorian_full(
|
gswe_timestamp_set_gregorian_full(
|
||||||
timestamp,
|
timestamp,
|
||||||
year, month, day,
|
year, month, day,
|
||||||
@ -522,7 +522,7 @@ ag_chart_edit_find_city(GtkTreeModel *model,
|
|||||||
);
|
);
|
||||||
|
|
||||||
if (g_utf8_collate(search->target, name) == 0) {
|
if (g_utf8_collate(search->target, name) == 0) {
|
||||||
found = TRUE;
|
found = TRUE;
|
||||||
search->ret_iter = gtk_tree_iter_copy(iter);
|
search->ret_iter = gtk_tree_iter_copy(iter);
|
||||||
search->ret_code = ccode;
|
search->ret_code = ccode;
|
||||||
} else {
|
} else {
|
||||||
@ -631,13 +631,13 @@ ag_chart_edit_name_changed_cb(GtkEntry *name_entry, AgChartEdit *chart_edit)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
ag_chart_edit_class_init (AgChartEditClass *klass)
|
ag_chart_edit_class_init(AgChartEditClass *klass)
|
||||||
{
|
{
|
||||||
GObjectClass *gobject_class = (GObjectClass *)klass;
|
GObjectClass *gobject_class = (GObjectClass *)klass;
|
||||||
GtkWidgetClass *widget_class = GTK_WIDGET_CLASS(klass);
|
GtkWidgetClass *widget_class = GTK_WIDGET_CLASS(klass);
|
||||||
|
|
||||||
gobject_class->dispose = ag_chart_edit_dispose;
|
gobject_class->dispose = ag_chart_edit_dispose;
|
||||||
gobject_class->finalize = ag_chart_edit_finalize;
|
gobject_class->finalize = ag_chart_edit_finalize;
|
||||||
gobject_class->set_property = ag_chart_edit_set_property;
|
gobject_class->set_property = ag_chart_edit_set_property;
|
||||||
gobject_class->get_property = ag_chart_edit_get_property;
|
gobject_class->get_property = ag_chart_edit_get_property;
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ ag_chart_edit_city_matches(GtkEntryCompletion *city_comp,
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
ag_chart_edit_init (AgChartEdit *chart_edit)
|
ag_chart_edit_init(AgChartEdit *chart_edit)
|
||||||
{
|
{
|
||||||
GET_PRIV(chart_edit);
|
GET_PRIV(chart_edit);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user