[geany/geany-plugins] 8c7fed: projectorganizer: The ./ prefix in message window is unnecessary

Jiří Techet git-noreply at xxxxx
Thu Dec 18 16:14:32 UTC 2014


Branch:      refs/heads/master
Author:      Jiří Techet <techet at gmail.com>
Committer:   Jiří Techet <techet at gmail.com>
Date:        Thu, 18 Dec 2014 16:14:32 UTC
Commit:      8c7feda2c519388472d09c7d49637ff0d24f9ad8
             https://github.com/geany/geany-plugins/commit/8c7feda2c519388472d09c7d49637ff0d24f9ad8

Log Message:
-----------
projectorganizer: The ./ prefix in message window is unnecessary

And looks ugly under Windows.


Modified Paths:
--------------
    projectorganizer/src/prjorg-sidebar.c

Modified: projectorganizer/src/prjorg-sidebar.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -372,7 +372,7 @@ static void find_file_recursive(GtkTreeIter *iter, gboolean case_sensitive, gboo
 
 			path = build_path(iter);
 			rel_path = get_file_relative_path(geany_data->app->project->base_path, path);
-			msgwin_msg_add(COLOR_BLACK, -1, NULL, "./%s", rel_path ? rel_path : path);
+			msgwin_msg_add(COLOR_BLACK, -1, NULL, "%s", rel_path ? rel_path : path);
 			g_free(path);
 			g_free(rel_path);
 		}



--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).


More information about the Plugins-Commits mailing list