tint2conf: Fix typo to load desktop files from subdirectories
This commit is contained in:
parent
89e4a5a460
commit
574b6bc214
1 changed files with 1 additions and 1 deletions
|
@ -1836,7 +1836,7 @@ void load_desktop_entries(const char *path, GList **entries)
|
||||||
GList *l;
|
GList *l;
|
||||||
for (l = subdirs; l; l = g_list_next(l)) {
|
for (l = subdirs; l; l = g_list_next(l)) {
|
||||||
gchar *dir = (gchar *)l->data;
|
gchar *dir = (gchar *)l->data;
|
||||||
load_desktop_entry(dir, entries);
|
load_desktop_entries(dir, entries);
|
||||||
g_free(dir);
|
g_free(dir);
|
||||||
}
|
}
|
||||||
g_list_free(subdirs);
|
g_list_free(subdirs);
|
||||||
|
|
Loading…
Reference in a new issue