diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2007-07-09 23:44:58 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2007-07-09 23:44:58 +0800 |
commit | c1ea2e3b533fea657d90a3b6e263675526f192e5 (patch) | |
tree | c5c87fd084b2847170aac010b40268ec663cd5cc /libempathy-gtk/empathy-account-widget-msn.h | |
parent | 3677c23545f7e549c72096112159eecd895a4270 (diff) | |
download | gsoc2013-empathy-c1ea2e3b533fea657d90a3b6e263675526f192e5.tar gsoc2013-empathy-c1ea2e3b533fea657d90a3b6e263675526f192e5.tar.gz gsoc2013-empathy-c1ea2e3b533fea657d90a3b6e263675526f192e5.tar.bz2 gsoc2013-empathy-c1ea2e3b533fea657d90a3b6e263675526f192e5.tar.lz gsoc2013-empathy-c1ea2e3b533fea657d90a3b6e263675526f192e5.tar.xz gsoc2013-empathy-c1ea2e3b533fea657d90a3b6e263675526f192e5.tar.zst gsoc2013-empathy-c1ea2e3b533fea657d90a3b6e263675526f192e5.zip |
Add MSN setting UI. Fixes bug #443162 (Cosimo Cecchi).
2007-07-09 Xavier Claessens <xclaesse@gmail.com>
* libempathy-gtk/empathy-account-widget-msn.glade:
* libempathy-gtk/empathy-account-widget-msn.c:
* libempathy-gtk/empathy-account-widget-msn.h:
* libempathy-gtk/empathy-accounts-dialog.c:
* libempathy-gtk/Makefile.am: Add MSN setting UI. Fixes bug #443162
(Cosimo Cecchi).
* libempathy-gtk/empathy-chat-view.c:
* libempathy/empathy-log-manager.c:
* libempathy/empathy-log-manager.h: Add needed API to show chat logs in
Tracker. Fixes bug #452536.
svn path=/trunk/; revision=178
Diffstat (limited to 'libempathy-gtk/empathy-account-widget-msn.h')
-rw-r--r-- | libempathy-gtk/empathy-account-widget-msn.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-account-widget-msn.h b/libempathy-gtk/empathy-account-widget-msn.h new file mode 100644 index 000000000..a61331623 --- /dev/null +++ b/libempathy-gtk/empathy-account-widget-msn.h @@ -0,0 +1,34 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ +/* + * Copyright (C) 2007 Collabora Ltd. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 2 of the + * License, or (at your option) any later version. + * + * This program 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 + * General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + * + * Authors: Cosimo Cecchi <anarki@lilik.it> + */ + +#ifndef __EMPATHY_ACCOUNT_WIDGET_MSN_H__ +#define __EMPATHY_ACCOUNT_WIDGET_MSN_H__ + +#include <libmissioncontrol/mc-account.h> + +G_BEGIN_DECLS + +GtkWidget *empathy_account_widget_msn_new (McAccount *account); + +G_END_DECLS + +#endif /* __EMPATHY_ACCOUNT_WIDGET_MSN_H__ */ |