SF.net SVN: geany:[4504] trunk

eht16 at users.sourceforge.net eht16 at xxxxx
Sun Dec 20 21:03:28 UTC 2009


Revision: 4504
          http://geany.svn.sourceforge.net/geany/?rev=4504&view=rev
Author:   eht16
Date:     2009-12-20 21:03:28 +0000 (Sun, 20 Dec 2009)

Log Message:
-----------
Rename win32_show_project_folder_dialog() to win32_show_folder_dialog() as it is not related and not used by any project management related code.

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/src/ui_utils.c
    trunk/src/win32.c

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2009-12-20 20:49:28 UTC (rev 4503)
+++ trunk/ChangeLog	2009-12-20 21:03:28 UTC (rev 4504)
@@ -25,6 +25,10 @@
  * src/callbacks.c, src/prefs.c, src/toolbar.c, src/toolbar.h:
    Set the correct parent window for the toolbar editor
    dialog (closes #2913334).
+ * src/win32.c, src/win32.h, src/ui_utils.c:
+   Rename win32_show_project_folder_dialog() to
+   win32_show_folder_dialog() as it is not related and not used by any
+   project management related code.
 
 
 2009-12-20  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>

Modified: trunk/src/ui_utils.c
===================================================================
--- trunk/src/ui_utils.c	2009-12-20 20:49:28 UTC (rev 4503)
+++ trunk/src/ui_utils.c	2009-12-20 21:03:28 UTC (rev 4504)
@@ -1662,7 +1662,7 @@
 	if (action == GTK_FILE_CHOOSER_ACTION_OPEN)
 	{
 #ifdef G_OS_WIN32
-		utf8_path = win32_show_project_folder_dialog(ui_widgets.prefs_dialog, title,
+		utf8_path = win32_show_folder_dialog(ui_widgets.prefs_dialog, title,
 						gtk_entry_get_text(GTK_ENTRY(entry)));
 #else
 		utf8_path = run_file_chooser(title, action, gtk_entry_get_text(GTK_ENTRY(entry)));

Modified: trunk/src/win32.c
===================================================================
--- trunk/src/win32.c	2009-12-20 20:49:28 UTC (rev 4503)
+++ trunk/src/win32.c	2009-12-20 21:03:28 UTC (rev 4504)
@@ -208,8 +208,7 @@
 /* Shows a folder selection dialog.
  * initial_dir is expected in UTF-8
  * The selected folder name is returned. */
-gchar *win32_show_project_folder_dialog(GtkWidget *parent, const gchar *title,
-										const gchar *initial_dir)
+gchar *win32_show_folder_dialog(GtkWidget *parent, const gchar *title, const gchar *initial_dir)
 {
 	BROWSEINFOW bi;
 	LPCITEMIDLIST pidl;


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