aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-password-dialog.h
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-10-28 22:34:40 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-11-23 20:14:30 +0800
commit80ff6670675cdfa087c92901d8d96c16f40c5613 (patch)
tree0b1b9cf5e822a9afff5da0d806b259e60efb8a41 /libempathy-gtk/empathy-password-dialog.h
parentadca8bd9665b6455879f2478e51c4bfd53af4d52 (diff)
downloadgsoc2013-empathy-80ff6670675cdfa087c92901d8d96c16f40c5613.tar
gsoc2013-empathy-80ff6670675cdfa087c92901d8d96c16f40c5613.tar.gz
gsoc2013-empathy-80ff6670675cdfa087c92901d8d96c16f40c5613.tar.bz2
gsoc2013-empathy-80ff6670675cdfa087c92901d8d96c16f40c5613.tar.lz
gsoc2013-empathy-80ff6670675cdfa087c92901d8d96c16f40c5613.tar.xz
gsoc2013-empathy-80ff6670675cdfa087c92901d8d96c16f40c5613.tar.zst
gsoc2013-empathy-80ff6670675cdfa087c92901d8d96c16f40c5613.zip
Abstract EmpathyPasswordDialog to EmpathyBasePasswordDialog
I'm going to implement a slidely different version of this dialog so best to re-use as much code as possible. https://bugzilla.gnome.org/show_bug.cgi?id=661640
Diffstat (limited to 'libempathy-gtk/empathy-password-dialog.h')
-rw-r--r--libempathy-gtk/empathy-password-dialog.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/libempathy-gtk/empathy-password-dialog.h b/libempathy-gtk/empathy-password-dialog.h
index 97538e8a5..d561af14a 100644
--- a/libempathy-gtk/empathy-password-dialog.h
+++ b/libempathy-gtk/empathy-password-dialog.h
@@ -25,6 +25,8 @@
#include <libempathy/empathy-server-sasl-handler.h>
+#include <libempathy-gtk/empathy-base-password-dialog.h>
+
#include <extensions/extensions.h>
G_BEGIN_DECLS
@@ -34,11 +36,11 @@ typedef struct _EmpathyPasswordDialogClass EmpathyPasswordDialogClass;
typedef struct _EmpathyPasswordDialogPriv EmpathyPasswordDialogPriv;
struct _EmpathyPasswordDialogClass {
- GtkMessageDialogClass parent_class;
+ EmpathyBasePasswordDialogClass parent_class;
};
struct _EmpathyPasswordDialog {
- GtkMessageDialog parent;
+ EmpathyBasePasswordDialog parent;
EmpathyPasswordDialogPriv *priv;
};