Skip to content

Commit

Permalink
Fix code style.
Browse files Browse the repository at this point in the history
  • Loading branch information
TheWiseNoob committed Jul 11, 2024
1 parent 91f2633 commit b5aa825
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/panel.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ omp_panel_class_init (OMPPanelClass* self)
void
omp_panel_set_sidebar_entry (const gchar* panel_name)
{
g_print("panel name: %s", panel_name);
g_print ("panel name: %s", panel_name);
}
5 changes: 2 additions & 3 deletions src/panel.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@ G_BEGIN_DECLS
#define OMP_PANEL_TYPE (omp_panel_get_type ())
G_DECLARE_DERIVABLE_TYPE (OMPPanel, omp_panel, OMP, APP_PANEL, AdwBin)

struct _OMPPanelClass
{
AdwBinClass parent_class;
struct _OMPPanelClass {
AdwBinClass parent_class;
};

void omp_panel_set_sidebar_entry (const gchar* panel_name);
Expand Down

0 comments on commit b5aa825

Please sign in to comment.