SF.net SVN: geany: [923] trunk/src/search.c

ntrel at users.sourceforge.net ntrel at xxxxx
Tue Oct 24 16:15:34 UTC 2006


Revision: 923
          http://svn.sourceforge.net/geany/?rev=923&view=rev
Author:   ntrel
Date:     2006-10-24 09:15:29 -0700 (Tue, 24 Oct 2006)

Log Message:
-----------
Reorder Replace All buttons.

Modified Paths:
--------------
    trunk/src/search.c

Modified: trunk/src/search.c
===================================================================
--- trunk/src/search.c	2006-10-24 13:41:34 UTC (rev 922)
+++ trunk/src/search.c	2006-10-24 16:15:29 UTC (rev 923)
@@ -386,15 +386,15 @@
 		g_signal_connect(G_OBJECT(button), "clicked", G_CALLBACK(send_replace_dialog_response),
 			GINT_TO_POINTER(GEANY_RESPONSE_REPLACE_IN_SEL));
 
-		button = gtk_button_new_with_mnemonic(_("In F_ile"));
+		button = gtk_button_new_with_mnemonic(_("In Sessi_on"));
 		gtk_container_add(GTK_CONTAINER(bbox), button);
 		g_signal_connect(G_OBJECT(button), "clicked", G_CALLBACK(send_replace_dialog_response),
-			GINT_TO_POINTER(GEANY_RESPONSE_REPLACE_IN_FILE));
+			GINT_TO_POINTER(GEANY_RESPONSE_REPLACE_IN_SESSION));
 
-		button = gtk_button_new_with_mnemonic(_("In Sessi_on"));
+		button = gtk_button_new_with_mnemonic(_("In F_ile"));
 		gtk_container_add(GTK_CONTAINER(bbox), button);
 		g_signal_connect(G_OBJECT(button), "clicked", G_CALLBACK(send_replace_dialog_response),
-			GINT_TO_POINTER(GEANY_RESPONSE_REPLACE_IN_SESSION));
+			GINT_TO_POINTER(GEANY_RESPONSE_REPLACE_IN_FILE));
 
 		gtk_size_group_add_widget(GTK_SIZE_GROUP(button_size), button);
 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Commits mailing list