Disable mouse hover events when the launcher tooltip is disabled

Do not use g_slist_free_full since it requires glib 2.28



git-svn-id: http://tint2.googlecode.com/svn/trunk@645 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
This commit is contained in:
o9000
2011-10-25 09:57:21 +00:00
committed by mrovi%interfete-web-club.com@gtempaccount.com
parent 10dfee6476
commit 123c8bef7d
2 changed files with 6 additions and 2 deletions

View File

@@ -104,6 +104,7 @@ void init_launcher_panel(void *p)
void cleanup_launcher()
{
int i;
GSList *l;
if (xsettings_client)
xsettings_client_destroy(xsettings_client);
@@ -112,7 +113,10 @@ void cleanup_launcher()
Launcher *launcher = &panel->launcher;
cleanup_launcher_theme(launcher);
}
g_slist_free_full(panel_config.launcher.list_apps, free);
for (l = panel_config.launcher.list_apps; l ; l = l->next) {
free(l->data);
}
g_slist_free(panel_config.launcher.list_apps);
panel_config.launcher.list_apps = NULL;
free(icon_theme_name);
icon_theme_name = 0;