summaryrefslogtreecommitdiff
path: root/liblightdm-gobject
diff options
context:
space:
mode:
authorRobert Ancell <robert.ancell@canonical.com>2014-04-29 11:00:24 +1200
committerRobert Ancell <robert.ancell@canonical.com>2014-04-29 11:00:24 +1200
commitc8ea4c9d004e3c16bb68df70bfdcc94319d4e94e (patch)
tree9ec80f9bb3075f2c6f0d16e495a3c66f6c0a9746 /liblightdm-gobject
parent70882eb2977885286c7f5e618dc15b12e4599ed9 (diff)
downloadlightdm-c8ea4c9d004e3c16bb68df70bfdcc94319d4e94e.tar.gz
Fix Request object not inheriting from GObject
Diffstat (limited to 'liblightdm-gobject')
-rw-r--r--liblightdm-gobject/greeter.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/liblightdm-gobject/greeter.c b/liblightdm-gobject/greeter.c
index 7eb726cf..158d573c 100644
--- a/liblightdm-gobject/greeter.c
+++ b/liblightdm-gobject/greeter.c
@@ -117,9 +117,10 @@ typedef enum
SERVER_MESSAGE_SHARED_DIR_RESULT,
} ServerMessage;
-/* Request to connect */
+/* Request sent to server */
typedef struct
{
+ GObject parent_instance;
GCancellable *cancellable;
GAsyncReadyCallback callback;
gpointer user_data;