rpms/xchat-gnome/F-8 xchat-gnome-fix_away_command.patch, 1.1, 1.2 xchat-gnome.spec, 1.46, 1.47

Brian Pepple (bpepple) fedora-extras-commits at redhat.com
Wed Feb 13 01:33:32 UTC 2008


Author: bpepple

Update of /cvs/pkgs/rpms/xchat-gnome/F-8
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv22434

Modified Files:
	xchat-gnome-fix_away_command.patch xchat-gnome.spec 
Log Message:
* Tue Feb 12 2008 Brian Pepple <bpepple at fedoraproject.org> - 0.18-7
- Updated away/back patch. (#430883)


xchat-gnome-fix_away_command.patch:

Index: xchat-gnome-fix_away_command.patch
===================================================================
RCS file: /cvs/pkgs/rpms/xchat-gnome/F-8/xchat-gnome-fix_away_command.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xchat-gnome-fix_away_command.patch	30 Jan 2008 20:30:12 -0000	1.1
+++ xchat-gnome-fix_away_command.patch	13 Feb 2008 01:33:27 -0000	1.2
@@ -1,5 +1,27 @@
---- trunk/src/fe-gnome/main-window.c	2007/09/09 22:34:50	2560
-+++ trunk/src/fe-gnome/main-window.c	2007/09/09 22:56:32	2561
+--- a/src/fe-gnome/main-window.c	2007-03-19 05:27:06.000000000 +0530
++++ b/src/fe-gnome/main-window.c	2008-02-04 10:57:18.000000000 +0530
+@@ -496,7 +496,7 @@
+ on_nickname_clicked (GtkButton *widget, gpointer user_data)
+ {
+ 	GtkWidget *dialog;
+-	GtkWidget *entry, *away;
++	GtkWidget *entry, *away_button;
+ 	gint result;
+ 
+ 	if (gui.current_session == NULL) {
+@@ -506,10 +506,10 @@
+ 
+ 	dialog = glade_xml_get_widget (gui.xml, "nickname dialog");
+ 	entry = glade_xml_get_widget (gui.xml, "nickname dialog entry");
+-	away = glade_xml_get_widget (gui.xml, "nickname dialog away");
++	away_button = glade_xml_get_widget (gui.xml, "nickname dialog away");
+ 
+ 	gtk_entry_set_text (GTK_ENTRY (entry), current_sess->server->nick);
+-	gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (away), current_sess->server->is_away);
++	gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (away_button), current_sess->server->is_away);
+ 	g_signal_connect (G_OBJECT (entry), "activate", G_CALLBACK (nickname_dialog_entry_activated), dialog);
+ 
+ 	result = gtk_dialog_run (GTK_DIALOG (dialog));
 @@ -532,11 +532,20 @@
  		g_free (buf);
  
@@ -7,7 +29,7 @@
 -		if (current_sess->server->is_away != gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (away))) {
 -			if (all) {
 -				handle_command (current_sess, "allserv away", FALSE);
-+		gboolean away = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (away));
++		gboolean away = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (away_button));
 +		if (current_sess->server->is_away != away) {
 +			if (away) {
 +				if (all) {


Index: xchat-gnome.spec
===================================================================
RCS file: /cvs/pkgs/rpms/xchat-gnome/F-8/xchat-gnome.spec,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- xchat-gnome.spec	30 Jan 2008 20:30:12 -0000	1.46
+++ xchat-gnome.spec	13 Feb 2008 01:33:27 -0000	1.47
@@ -1,6 +1,6 @@
 Name:           xchat-gnome
 Version:        0.18
-Release:        6%{?dist}
+Release:        7%{?dist}
 Summary:        GNOME front-end to xchat
 
 Group:          Applications/Internet
@@ -130,8 +130,11 @@
 
 
 %changelog
+* Tue Feb 12 2008 Brian Pepple <bpepple at fedoraproject.org> - 0.18-7
+- Updated away/back patch. (#430883)
+
 * Wed Jan 30 2008 Brian Pepple <bpepple at fedoraproject.org> - 0.18-6
-- Add patch to fix away/back command. (#430883)
+- Add patch to fix away/back command.
 
 * Thu Sep 13 2007 Brian Pepple <bpepple at fedoraproject.org> - 0.18-5
 - Add patch to fix reconnect bug. (#225408)




More information about the fedora-extras-commits mailing list