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 Feb 5, 2024
1 parent b4881f0 commit 11759e5
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 @@ -377,10 +377,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 @@ -551,7 +549,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 @@ -690,13 +689,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 11759e5

Please sign in to comment.