trivial: Update code style
This commit is contained in:
parent
75167f45fd
commit
6541c128df
2 changed files with 9 additions and 10 deletions
|
@ -193,7 +193,7 @@ cc_panel_get_shell (CcPanel *panel)
|
|||
return priv->shell;
|
||||
}
|
||||
|
||||
const char *
|
||||
const gchar*
|
||||
cc_panel_get_help_uri (CcPanel *panel)
|
||||
{
|
||||
CcPanelClass *class = CC_PANEL_GET_CLASS (panel);
|
||||
|
|
|
@ -47,7 +47,6 @@ typedef void (*CcPanelStaticInitFunc) (void);
|
|||
|
||||
|
||||
#define CC_TYPE_PANEL (cc_panel_get_type())
|
||||
|
||||
G_DECLARE_DERIVABLE_TYPE (CcPanel, cc_panel, CC, PANEL, GtkBin)
|
||||
|
||||
/**
|
||||
|
@ -77,21 +76,21 @@ G_BEGIN_DECLS
|
|||
struct _CcPanelClass
|
||||
{
|
||||
/*< private >*/
|
||||
GtkBinClass parent_class;
|
||||
GtkBinClass parent_class;
|
||||
|
||||
const char * (* get_help_uri) (CcPanel *panel);
|
||||
const gchar* (*get_help_uri) (CcPanel *panel);
|
||||
|
||||
GtkWidget * (* get_title_widget) (CcPanel *panel);
|
||||
GtkWidget * (* get_sidebar_widget) (CcPanel *panel);
|
||||
GtkWidget* (*get_title_widget) (CcPanel *panel);
|
||||
GtkWidget* (*get_sidebar_widget) (CcPanel *panel);
|
||||
};
|
||||
|
||||
CcShell* cc_panel_get_shell (CcPanel *panel);
|
||||
CcShell* cc_panel_get_shell (CcPanel *panel);
|
||||
|
||||
GPermission *cc_panel_get_permission (CcPanel *panel);
|
||||
GPermission* cc_panel_get_permission (CcPanel *panel);
|
||||
|
||||
const char *cc_panel_get_help_uri (CcPanel *panel);
|
||||
const gchar* cc_panel_get_help_uri (CcPanel *panel);
|
||||
|
||||
GtkWidget *cc_panel_get_title_widget (CcPanel *panel);
|
||||
GtkWidget* cc_panel_get_title_widget (CcPanel *panel);
|
||||
|
||||
GtkWidget* cc_panel_get_sidebar_widget (CcPanel *panel);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue