[totem] main: Rename _next_angle() function with correct prefix



commit 6cb68e32f4d230cd4d2ad0fbce7909035c61bd37
Author: Bastien Nocera <hadess hadess net>
Date:   Tue Mar 19 09:28:40 2013 +0100

    main: Rename _next_angle() function with correct prefix
    
    totem_object_action_... rather than simply totem_action_...

 src/totem-object.c |    4 ++--
 src/totem.h        |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/src/totem-object.c b/src/totem-object.c
index bd9e9f7..f8ce9a1 100644
--- a/src/totem-object.c
+++ b/src/totem-object.c
@@ -2765,14 +2765,14 @@ show_controls (TotemObject *totem, gboolean was_fullscreen)
 }
 
 /**
- * totem_action_next_angle:
+ * totem_object_action_next_angle:
  * @totem: a #TotemObject
  *
  * Switches to the next angle, if watching a DVD. If not watching a DVD, this is a
  * no-op.
  **/
 void
-totem_action_next_angle (TotemObject *totem)
+totem_object_action_next_angle (TotemObject *totem)
 {
        bacon_video_widget_set_next_angle (totem->bvw);
 }
diff --git a/src/totem.h b/src/totem.h
index 186dc24..4bf9d5d 100644
--- a/src/totem.h
+++ b/src/totem.h
@@ -212,7 +212,7 @@ void        totem_action_set_mrl_and_play           (TotemObject *totem,
 void   totem_action_toggle_aspect_ratio        (TotemObject *totem);
 void   totem_action_set_aspect_ratio           (TotemObject *totem, int ratio);
 int    totem_action_get_aspect_ratio           (TotemObject *totem);
-void   totem_action_next_angle                 (TotemObject *totem);
+void   totem_object_action_next_angle          (TotemObject *totem);
 
 #define totem_action_error totem_object_action_error
 void    totem_object_action_error               (TotemObject *totem,


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]