all repos — tint2 @ b9f8bf30f7b378d06899403545b4ad010501fc09

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

Remove fflush

git-svn-id: http://tint2.googlecode.com/svn/trunk@762 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
o9000 o9000
commit

b9f8bf30f7b378d06899403545b4ad010501fc09

parent

64c1fc03f902089389e4266eed5908996f0e7709

1 files changed, 4 insertions(+), 4 deletions(-)

jump to
M src/tint2conf/properties.csrc/tint2conf/properties.c

@@ -1861,15 +1861,15 @@ gtk_list_store_set(icon_themes, &iter,

0, "", -1); - fprintf(stderr, "Loading icon themes\n"); fflush(stderr); + fprintf(stderr, "Loading icon themes\n"); const GSList *location; for (location = get_icon_locations(); location; location = g_slist_next(location)) { const gchar *path = (gchar*) location->data; load_icon_themes(path, NULL); } - fprintf(stderr, "Icon themes loaded\n"); fflush(stderr); + fprintf(stderr, "Icon themes loaded\n"); - fprintf(stderr, "Loading .desktop files\n"); fflush(stderr); + fprintf(stderr, "Loading .desktop files\n"); load_desktop_files("/usr/share/applications"); gchar *path = g_build_filename(g_get_home_dir(), ".local/share/applications", NULL); load_desktop_files(path);

@@ -1878,7 +1878,7 @@

icon_theme_changed(); load_icons(launcher_apps); load_icons(all_apps); - fprintf(stderr, "Desktop files loaded\n"); fflush(stderr); + fprintf(stderr, "Desktop files loaded\n"); } void create_taskbar(GtkWidget *parent)