Skip to content

Commit

Permalink
detail-view: Code formatting fixes and cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
oscfdezdz committed Mar 13, 2024
1 parent 9b0426e commit 2a05206
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/exm-detail-view.c
Original file line number Diff line number Diff line change
Expand Up @@ -376,10 +376,8 @@ on_data_loaded (GObject *source,
GError *error = NULL;
ExmDetailView *self;
ExmInstallButtonState install_state;
GtkWidget *child;
GList *version_iter;
ExmShellVersionMap *version_map;
gchar *uri;

self = EXM_DETAIL_VIEW (user_data);

Expand Down Expand Up @@ -705,13 +703,13 @@ exm_detail_view_class_init (ExmDetailViewClass *klass)
}

static void
widget_show(GtkWidget *widget) {
gtk_widget_set_visible(widget, TRUE);
widget_show (GtkWidget *widget) {
gtk_widget_set_visible (widget, TRUE);
}

static void
widget_hide(GtkWidget *widget) {
gtk_widget_set_visible(widget, FALSE);
widget_hide (GtkWidget *widget) {
gtk_widget_set_visible (widget, FALSE);
}

static void
Expand Down

0 comments on commit 2a05206

Please sign in to comment.