rpms/xchat-gnome/devel xchat-topic-update.patch, NONE, 1.1 xchat-gnome.spec, 1.61, 1.62

Brian Pepple bpepple at fedoraproject.org
Sun May 10 12:16:51 UTC 2009


Author: bpepple

Update of /cvs/pkgs/rpms/xchat-gnome/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30789

Modified Files:
	xchat-gnome.spec 
Added Files:
	xchat-topic-update.patch 
Log Message:
* Sun May 10 2009 Brian Pepple <bpepple at fedoraproject.org> - 0.26.1-2
- Add patch to fix topic entry bug. (#483839)


xchat-topic-update.patch:

--- NEW FILE xchat-topic-update.patch ---
diff --git a/src/fe-gnome/topic-label.c b/src/fe-gnome/topic-label.c
index a7d1883..334a196 100644
--- a/src/fe-gnome/topic-label.c
+++ b/src/fe-gnome/topic-label.c
@@ -267,8 +267,7 @@ topic_label_change_current (TopicLabel *label)
 	g_free (title);
 
 	gchar *topic = priv->current->topic;
-	GtkTextBuffer *buffer = gtk_text_buffer_new (NULL);
-        gtk_text_view_set_buffer (GTK_TEXT_VIEW (entry), buffer);
+	GtkTextBuffer *buffer = gtk_text_view_get_buffer ( GTK_TEXT_VIEW (entry));
 	g_signal_connect (G_OBJECT (buffer), "insert-text", G_CALLBACK (topic_entry_activate), dialog);
 	if (topic) {
         	gtk_text_buffer_set_text (buffer, topic, -1);
@@ -282,6 +281,12 @@ topic_label_change_current (TopicLabel *label)
 		gtk_widget_hide (dialog);
 		gtk_text_view_set_wrap_mode (GTK_TEXT_VIEW (entry), GTK_WRAP_NONE);
 		gchar *newtopic = gtk_text_buffer_get_text (buffer, &start, &end, FALSE);
+		/* bz:536916 – Pressing "Enter" in the middle of editing channel topic truncates 
+		 * ignore "\n" aka enter key 
+		 */
+		glong i, len = g_utf8_strlen (newtopic, -1);
+	        for (i=0; i< len; i++) 
+			if (newtopic[i]=='\n') newtopic[i]=' ';
 		priv->current->server->p_topic (priv->current->server, priv->current->channel, newtopic);
 		g_free (newtopic);
 	}



Index: xchat-gnome.spec
===================================================================
RCS file: /cvs/pkgs/rpms/xchat-gnome/devel/xchat-gnome.spec,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -p -r1.61 -r1.62
--- xchat-gnome.spec	18 Apr 2009 22:56:53 -0000	1.61
+++ xchat-gnome.spec	10 May 2009 12:16:50 -0000	1.62
@@ -1,6 +1,6 @@
 Name:           xchat-gnome
 Version:        0.26.1
-Release:        1%{?dist}
+Release:        2%{?dist}
 Summary:        GNOME front-end to xchat
 
 Group:          Applications/Internet
@@ -9,6 +9,9 @@ URL:            http://%{name}.navi.cx/
 Source0:        http://ftp.acc.umu.se/pub/gnome/sources/%{name}/0.26/%{name}-%{version}.tar.bz2
 # Patch specific to Fedora to use .xchat-gnome, instead of .xchat2
 Patch0:		%{name}-0.23.92-config.patch
+# Patch to fix pressing "enter" in the middle of editing channel topic.
+# RH Bug #483839
+Patch1:		xchat-topic-update.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
 BuildRequires:	openssl-devel
@@ -48,6 +51,7 @@ common settings will be included in the 
 %prep
 %setup -q -n %{name}-%{version}
 %patch0 -p1 -b .config
+%patch1 -p1 -b .topic
 
 
 %build
@@ -136,6 +140,9 @@ fi
 
 
 %changelog
+* Sun May 10 2009 Brian Pepple <bpepple at fedoraproject.org> - 0.26.1-2
+- Add patch to fix topic entry bug. (#483839)
+
 * Sat Apr 18 2009 Brian Pepple <bpepple at fedoraproject.org> - 0.26.1-1
 - Update to 0.26.1.
 




More information about the scm-commits mailing list