diff options
Diffstat (limited to 'src/fr-init.c')
-rw-r--r-- | src/fr-init.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/fr-init.c b/src/fr-init.c index cf567a1..acc8b44 100644 --- a/src/fr-init.c +++ b/src/fr-init.c @@ -204,7 +204,7 @@ migrate_options_directory (void) /* -- FrRegisteredCommand -- */ -FrRegisteredCommand * +static FrRegisteredCommand * fr_registered_command_new (GType command_type) { FrRegisteredCommand *reg_com; @@ -245,14 +245,14 @@ fr_registered_command_new (GType command_type) } -void +G_GNUC_UNUSED static void fr_registered_command_ref (FrRegisteredCommand *reg_com) { reg_com->ref++; } -void +static void fr_registered_command_unref (FrRegisteredCommand *reg_com) { if (--(reg_com->ref) != 0) @@ -264,7 +264,7 @@ fr_registered_command_unref (FrRegisteredCommand *reg_com) } -FrCommandCaps +static FrCommandCaps fr_registered_command_get_capabilities (FrRegisteredCommand *reg_com, const char *mime_type) { @@ -282,7 +282,7 @@ fr_registered_command_get_capabilities (FrRegisteredCommand *reg_com, } -FrCommandCaps +static FrCommandCaps fr_registered_command_get_potential_capabilities (FrRegisteredCommand *reg_com, const char *mime_type) { @@ -303,7 +303,7 @@ fr_registered_command_get_potential_capabilities (FrRegisteredCommand *reg_com, } -void +static void register_command (GType command_type) { if (Registered_Commands == NULL) @@ -312,7 +312,7 @@ register_command (GType command_type) } -gboolean +G_GNUC_UNUSED static gboolean unregister_command (GType command_type) { int i; |