aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Barisione <marco.barisione@collabora.co.uk>2013-05-06 18:37:47 +0800
committerMarco Barisione <marco.barisione@collabora.co.uk>2013-08-20 18:03:05 +0800
commitdc5ad68355fa55261f24098d9be184a2c6f6f459 (patch)
tree448da9f7b71b27e9e1e75d5da692a2e48e1b46ef
parentc689cd6a91cb2a31ce0d03f47e59ca4e3f368e9c (diff)
downloadgsoc2013-empathy-dc5ad68355fa55261f24098d9be184a2c6f6f459.tar
gsoc2013-empathy-dc5ad68355fa55261f24098d9be184a2c6f6f459.tar.gz
gsoc2013-empathy-dc5ad68355fa55261f24098d9be184a2c6f6f459.tar.bz2
gsoc2013-empathy-dc5ad68355fa55261f24098d9be184a2c6f6f459.tar.lz
gsoc2013-empathy-dc5ad68355fa55261f24098d9be184a2c6f6f459.tar.xz
gsoc2013-empathy-dc5ad68355fa55261f24098d9be184a2c6f6f459.tar.zst
gsoc2013-empathy-dc5ad68355fa55261f24098d9be184a2c6f6f459.zip
tpaw-utils: add stub for files with misc utility functions
https://bugzilla.gnome.org/show_bug.cgi?id=699492
-rw-r--r--tp-account-widgets/Makefile.am1
-rw-r--r--tp-account-widgets/tpaw-utils.c25
-rw-r--r--tp-account-widgets/tpaw-utils.h30
3 files changed, 56 insertions, 0 deletions
diff --git a/tp-account-widgets/Makefile.am b/tp-account-widgets/Makefile.am
index 80089458f..29a8ed72d 100644
--- a/tp-account-widgets/Makefile.am
+++ b/tp-account-widgets/Makefile.am
@@ -29,6 +29,7 @@ libtp_account_widgets_sources = \
tpaw-irc-network-manager.c \
tpaw-irc-network.c \
tpaw-irc-server.c \
+ tpaw-utils.c \
totem-subtitle-encoding.c \
$(NULL)
diff --git a/tp-account-widgets/tpaw-utils.c b/tp-account-widgets/tpaw-utils.c
new file mode 100644
index 000000000..d8bebdac0
--- /dev/null
+++ b/tp-account-widgets/tpaw-utils.c
@@ -0,0 +1,25 @@
+/*
+ * 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-utils.h"
+
+#define DEBUG_FLAG EMPATHY_DEBUG_OTHER
+#include "empathy-debug.h"
diff --git a/tp-account-widgets/tpaw-utils.h b/tp-account-widgets/tpaw-utils.h
new file mode 100644
index 000000000..8c5dc8cb1
--- /dev/null
+++ b/tp-account-widgets/tpaw-utils.h
@@ -0,0 +1,30 @@
+/*
+ * 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_UTILS_H__
+#define __TPAW_UTILS_H__
+
+#include <glib.h>
+
+G_BEGIN_DECLS
+
+G_END_DECLS
+
+#endif /* __TPAW_UTILS_H__ */