~ubuntu-branches/ubuntu/hardy/xchat-gnome/hardy-updates

« back to all changes in this revision

Viewing changes to src/fe-gnome/channel-list.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2006-07-20 10:46:11 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20060720104611-bo8b5e44s9b8cc9w
Tags: 1:0.13-0ubuntu1
* New upstream version, UVF granted by Colin Watson:
  - Add the ability to auto-join keyed channels (Ubuntu: #29856)
  - Add the red-line unread indicator (Ubuntu: #30642)
  - Lots and lots of major bug fixes
  - Fix a crash when saving transcript without current session
    (Ubuntu: #52692)
  - Fix crasher when using /server <servername> (Ubuntu: #45312)
* debian/control.in:
  - Build-Depends on libssl-dev instead of libssl0.9.8 (Ubuntu: #52746)
* debian/patches/03_autoconf.patch:
  - updated

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
 
49
49
        /* text filtering */
50
50
        if (window->filter_topic && window->text_filter != NULL && strlen (window->text_filter) != 0)
51
 
                /* We have something to filtre */
 
51
                /* We have something to filter */
52
52
                if (strcasestr (topic, window->text_filter) == NULL)
53
53
                        return FALSE;
54
54
 
154
154
}
155
155
 
156
156
static void
157
 
chanlist_save (GtkWidget *button, channel_list_window *win)
158
 
{
159
 
}
160
 
 
161
 
static void
162
157
join_selected_channel (GtkTreeView *treeview)
163
158
{
164
159
        GtkTreeModel *model;
304
299
 
305
300
        refresh_button = glade_xml_get_widget (win->xml, "refresh button");
306
301
        g_signal_connect (G_OBJECT (refresh_button), "clicked", G_CALLBACK (chanlist_refresh), win);
307
 
        widget = glade_xml_get_widget (win->xml, "save button");
308
 
        g_signal_connect (G_OBJECT (widget), "clicked", G_CALLBACK (chanlist_save), win);
309
302
        widget = glade_xml_get_widget (win->xml, "join button");
310
303
        gtk_widget_set_sensitive (widget, FALSE);
311
304
        g_signal_connect (G_OBJECT (widget), "clicked", G_CALLBACK (chanlist_join), win);