]> git.0d.be Git - empathy.git/commitdiff
builder: add stub header and source file for tpaw_builder_* functions
authorMarco Barisione <marco.barisione@collabora.co.uk>
Thu, 9 May 2013 12:56:32 +0000 (13:56 +0100)
committerMarco Barisione <marco.barisione@collabora.co.uk>
Tue, 20 Aug 2013 10:03:05 +0000 (11:03 +0100)
https://bugzilla.gnome.org/show_bug.cgi?id=699492

tp-account-widgets/Makefile.am
tp-account-widgets/tpaw-builder.c [new file with mode: 0644]
tp-account-widgets/tpaw-builder.h [new file with mode: 0644]

index 3ff553153cb9c05ff2b8e5617f37a4f53a71b10f..5f2f0d30fc301a63e441b77316d17744b5307272 100644 (file)
@@ -21,6 +21,7 @@ libtp_account_widgets_sources =               \
        tpaw-account-widget-irc.c               \
        tpaw-account-widget-private.h           \
        tpaw-account-widget-sip.c               \
+       tpaw-builder.c                          \
        tpaw-connection-managers.c              \
        tpaw-keyring.c                          \
        tpaw-irc-network-chooser.c              \
@@ -39,6 +40,7 @@ libtp_account_widgets_headers =                       \
        tpaw-account-widget.h                   \
        tpaw-account-widget-irc.h               \
        tpaw-account-widget-sip.h               \
+       tpaw-builder.h                          \
        tpaw-connection-managers.h              \
        tpaw-keyring.h                          \
        tpaw-irc-network-chooser-dialog.h       \
diff --git a/tp-account-widgets/tpaw-builder.c b/tp-account-widgets/tpaw-builder.c
new file mode 100644 (file)
index 0000000..8b7587a
--- /dev/null
@@ -0,0 +1,22 @@
+/*
+ * Copyright (C) 2013 Collabora Ltd.
+ *
+ * Authors: Marco Barisione <marco.barisione@collabora.co.uk>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
+#include "config.h"
+#include "tpaw-builder.h"
diff --git a/tp-account-widgets/tpaw-builder.h b/tp-account-widgets/tpaw-builder.h
new file mode 100644 (file)
index 0000000..66a9d44
--- /dev/null
@@ -0,0 +1,31 @@
+/*
+ * Copyright (C) 2013 Collabora Ltd.
+ *
+ * Authors: Marco Barisione <marco.barisione@collabora.co.uk>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
+#ifndef __TPAW_BUILDER_H__
+#define __TPAW_BUILDER_H__
+
+#include <glib.h>
+#include <gtk/gtk.h>
+
+G_BEGIN_DECLS
+
+G_END_DECLS
+
+#endif /*  __TPAW_BUILDER_H__ */