summaryrefslogtreecommitdiff
path: root/telepathy-logger/util.c
diff options
context:
space:
mode:
authorCosimo Alfarano <cosimo.alfarano@collabora.co.uk>2010-02-13 19:35:53 +0000
committerDanielle Madeley <danielle.madeley@collabora.co.uk>2010-02-15 12:39:44 +1100
commit6798ce20c11c3e970db518d17e99f92b11f2c14c (patch)
tree58f26867680ecf5d812e10a012875c2e1b9f4c02 /telepathy-logger/util.c
parent1b041cd588e49fd710d5bfed94c6756592c1562b (diff)
downloadtelepathy-logger-6798ce20c11c3e970db518d17e99f92b11f2c14c.tar.gz
Removal of util.c module.
Use the normal approach to unreferencing objects. Use g_str_equal instead of tpl_strequal (which was useless and now removed). Removed any inclusion of util.h from headers files, and properly including util.h in .c files
Diffstat (limited to 'telepathy-logger/util.c')
-rw-r--r--telepathy-logger/util.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/telepathy-logger/util.c b/telepathy-logger/util.c
deleted file mode 100644
index d263c46..0000000
--- a/telepathy-logger/util.c
+++ /dev/null
@@ -1,32 +0,0 @@
-/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
-/*
- * Copyright (C) 2009 Collabora Ltd.
- *
- * 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
- *
- * Authors: Cosimo Alfarano <cosimo.alfarano@collabora.co.uk>
- */
-
-#include "config.h"
-#include "util.h"
-
-#include <telepathy-glib/util.h>
-
-gboolean
-tpl_strequal (const gchar *left,
- const gchar *right)
-{
- return !tp_strdiff (left, right);
-}