bug-buddy r2593 - in trunk: . src



Author: cosimoc
Date: Sun Aug  3 22:47:12 2008
New Revision: 2593
URL: http://svn.gnome.org/viewvc/bug-buddy?rev=2593&view=rev

Log:
2008-08-04  Cosimo Cecchi  <cosimoc gnome org>

	* src/bug-buddy.c: (on_send_clicked):
	Fix coding style and indentation.


Modified:
   trunk/ChangeLog
   trunk/src/bug-buddy.c

Modified: trunk/src/bug-buddy.c
==============================================================================
--- trunk/src/bug-buddy.c	(original)
+++ trunk/src/bug-buddy.c	Sun Aug  3 22:47:12 2008
@@ -1004,8 +1004,7 @@
 	i = gtk_text_buffer_get_char_count (
 			gtk_text_view_get_buffer (GTK_TEXT_VIEW (details)));
 
-	if (i < MIN_REPORT_DETAILS_CHARS)
-	{
+	if (i < MIN_REPORT_DETAILS_CHARS) {
 		GtkWidget *dialog;
 		GtkWidget *button;
 		GtkWidget *icon;
@@ -1016,16 +1015,18 @@
 				GTK_DIALOG_MODAL, 
 				GTK_MESSAGE_INFO,
 				GTK_BUTTONS_NONE,
-				_("The description you provided for the \
-crash is very short. Are you sure you want to send it?"));
+				_("The description you provided for the "
+				  "crash is very short. Are you sure you want "
+				  "to send it?"));
 
 		/* Secondary text */
 		gtk_message_dialog_format_secondary_text 
 			(GTK_MESSAGE_DIALOG (dialog),
-			 _("A short description is probably not of much help \
-to the developers investigating your report. If you provide a better one, for \
-instance specifying a way to reproduce the crash, the issue can be more \
-easily resolved"));
+			 _("A short description is probably not of much help "
+			   "to the developers investigating your report. "
+			   "If you provide a better one, for instance "
+			   "specifying a way to reproduce the crash, the "
+			   "issue can be more easily resolved."));
 
 		/* Review button */
 		button = gtk_dialog_add_button (GTK_DIALOG (dialog),
@@ -1054,7 +1055,6 @@
 
 		if (i != GTK_RESPONSE_OK)
 			return;
-
 	}
 
 	gtk_widget_show (GTK_WIDGET (



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]