Rename gimp_display_shell_selection_layer_set_hidden() to set_layer_hidden()

This commit is contained in:
Michael Natterer
2009-10-08 09:10:33 +02:00
parent cb4c374edd
commit 57541f8093
3 changed files with 3 additions and 3 deletions

View File

@ -299,7 +299,7 @@ gimp_display_shell_set_show_layer (GimpDisplayShell *shell,
g_object_set (options, "show-layer-boundary", show, NULL); g_object_set (options, "show-layer-boundary", show, NULL);
gimp_display_shell_selection_layer_set_hidden (shell, ! show); gimp_display_shell_selection_set_layer_hidden (shell, ! show);
appearance_set_action_active (shell, "view-show-layer-boundary", show); appearance_set_action_active (shell, "view-show-layer-boundary", show);
} }

View File

@ -225,7 +225,7 @@ gimp_display_shell_selection_set_hidden (GimpDisplayShell *shell,
} }
void void
gimp_display_shell_selection_layer_set_hidden (GimpDisplayShell *shell, gimp_display_shell_selection_set_layer_hidden (GimpDisplayShell *shell,
gboolean hidden) gboolean hidden)
{ {
g_return_if_fail (GIMP_IS_DISPLAY_SHELL (shell)); g_return_if_fail (GIMP_IS_DISPLAY_SHELL (shell));

View File

@ -27,7 +27,7 @@ void gimp_display_shell_selection_control (GimpDisplayShell *shell,
void gimp_display_shell_selection_set_hidden (GimpDisplayShell *shell, void gimp_display_shell_selection_set_hidden (GimpDisplayShell *shell,
gboolean hidden); gboolean hidden);
void gimp_display_shell_selection_layer_set_hidden (GimpDisplayShell *shell, void gimp_display_shell_selection_set_layer_hidden (GimpDisplayShell *shell,
gboolean hidden); gboolean hidden);