[geany/geany] b6f1eb: Show tooltip in correct encoding in the file browser

Jiří Techet git-noreply at xxxxx
Sun Feb 28 18:50:53 UTC 2016


Branch:      refs/heads/master
Author:      Jiří Techet <techet at gmail.com>
Committer:   Jiří Techet <techet at gmail.com>
Date:        Thu, 02 Jul 2015 16:04:22 UTC
Commit:      b6f1eb9136323b0aa8e770ff636053888d3a47f4
             https://github.com/geany/geany/commit/b6f1eb9136323b0aa8e770ff636053888d3a47f4

Log Message:
-----------
Show tooltip in correct encoding in the file browser

Clearly a typo in the original code.


Modified Paths:
--------------
    plugins/filebrowser.c

Modified: plugins/filebrowser.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -233,7 +233,7 @@ static void add_item(const gchar *name)
 	sep = (utils_str_equal(current_dir, "/")) ? "" : G_DIR_SEPARATOR_S;
 	fname = g_strconcat(current_dir, sep, name, NULL);
 	dir = g_file_test(fname, G_FILE_TEST_IS_DIR);
-	utf8_fullname = utils_get_locale_from_utf8(fname);
+	utf8_fullname = utils_get_utf8_from_locale(fname);
 	utf8_name = utils_get_utf8_from_locale(name);
 	g_free(fname);
 



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


More information about the Commits mailing list