[gnome-desktop/gnome-3-8] gnome-rr: Fix types of signal vfuncs



commit 1b157d067fb168a6c80a70ba9a4aa3fb331d6302
Author: Bastien Nocera <hadess hadess net>
Date:   Thu Jul 18 17:10:51 2013 +0200

    gnome-rr: Fix types of signal vfuncs
    
    ... in the class definition. They were missing the object itself.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=704477

 libgnome-desktop/gnome-rr.h |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/libgnome-desktop/gnome-rr.h b/libgnome-desktop/gnome-rr.h
index 776869f..3d5aced 100644
--- a/libgnome-desktop/gnome-rr.h
+++ b/libgnome-desktop/gnome-rr.h
@@ -45,9 +45,9 @@ typedef struct {
 typedef struct {
        GObjectClass parent_class;
 
-        void (* changed) (void);
-        void (* output_connected)       (GnomeRROutput *output);
-        void (* output_disconnected)    (GnomeRROutput *output);
+        void (*changed)                (GnomeRRScreen *screen);
+        void (*output_connected)       (GnomeRRScreen *screen, GnomeRROutput *output);
+        void (*output_disconnected)    (GnomeRRScreen *screen, GnomeRROutput *output);
 } GnomeRRScreenClass;
 
 typedef enum


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