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 Dec 30, 2023
1 parent 2abd844 commit f2135c1
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions src/exm-detail-view.c
Original file line number Diff line number Diff line change
Expand Up @@ -355,10 +355,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 @@ -521,7 +519,8 @@ exm_detail_view_update (ExmDetailView *self)
}

void
exm_detail_view_adaptive (ExmDetailView *self, AdwBreakpoint *breakpoint)
exm_detail_view_adaptive (ExmDetailView *self,
AdwBreakpoint *breakpoint)
{
GValue value = G_VALUE_INIT;

Expand Down Expand Up @@ -659,13 +658,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 f2135c1

Please sign in to comment.