Remove unnecessary textdomain() call.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@4909 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Enrico Tröger 2010-05-14 16:01:44 +00:00
parent 93abd91162
commit c72f1d40ac
2 changed files with 2 additions and 1 deletions

View File

@ -14,6 +14,8 @@
* src/sidebar.c:
Improve sorting of document list items
(patch by Colomban Wendling, thanks).
* src/main.c:
Remove unnecessary textdomain() call.
2010-05-11 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>

View File

@ -454,7 +454,6 @@ void main_locale_init(const gchar *locale_dir, const gchar *package)
bindtextdomain(package, l_locale_dir);
bind_textdomain_codeset(package, "UTF-8");
textdomain(package);
g_free(l_locale_dir);
}