aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-account-widget-irc.c
diff options
context:
space:
mode:
authorSjoerd Simons <sjoerd.simons@collabora.co.uk>2009-07-08 18:35:43 +0800
committerSjoerd Simons <sjoerd.simons@collabora.co.uk>2009-07-08 23:17:42 +0800
commit96fad6a1159582a3e8792dd3308ce1fbeb178234 (patch)
tree8890b1c4f420b2053af80d586b0a112f772c1097 /libempathy-gtk/empathy-account-widget-irc.c
parente98ae9bde97e290c0f54593af1cb30905bb9055e (diff)
downloadgsoc2013-empathy-96fad6a1159582a3e8792dd3308ce1fbeb178234.tar
gsoc2013-empathy-96fad6a1159582a3e8792dd3308ce1fbeb178234.tar.gz
gsoc2013-empathy-96fad6a1159582a3e8792dd3308ce1fbeb178234.tar.bz2
gsoc2013-empathy-96fad6a1159582a3e8792dd3308ce1fbeb178234.tar.lz
gsoc2013-empathy-96fad6a1159582a3e8792dd3308ce1fbeb178234.tar.xz
gsoc2013-empathy-96fad6a1159582a3e8792dd3308ce1fbeb178234.tar.zst
gsoc2013-empathy-96fad6a1159582a3e8792dd3308ce1fbeb178234.zip
Initial port of Account and AccountManager to MC5
Diffstat (limited to 'libempathy-gtk/empathy-account-widget-irc.c')
-rw-r--r--libempathy-gtk/empathy-account-widget-irc.c13
1 files changed, 4 insertions, 9 deletions
diff --git a/libempathy-gtk/empathy-account-widget-irc.c b/libempathy-gtk/empathy-account-widget-irc.c
index 7e0fb89ed..b2383a02a 100644
--- a/libempathy-gtk/empathy-account-widget-irc.c
+++ b/libempathy-gtk/empathy-account-widget-irc.c
@@ -321,11 +321,11 @@ fill_networks_model (EmpathyAccountWidgetIrc *settings,
static void
account_widget_irc_setup (EmpathyAccountWidgetIrc *settings)
{
- gchar *nick = NULL;
- gchar *fullname = NULL;
- gchar *server = NULL;
+ const gchar *nick = NULL;
+ const gchar *fullname = NULL;
+ const gchar *server = NULL;
gint port = 6667;
- gchar *charset;
+ const gchar *charset;
gboolean ssl = FALSE;
EmpathyIrcNetwork *network = NULL;
@@ -402,11 +402,6 @@ account_widget_irc_setup (EmpathyAccountWidgetIrc *settings)
fill_networks_model (settings, network);
-
- g_free (nick);
- g_free (fullname);
- g_free (server);
- g_free (charset);
}
/**