X-Git-Url: http://git.wpitchoune.net/gitweb/?a=blobdiff_plain;f=src%2Fmain.c;h=67c1d6a7b783a7c08f185dfbba42b28e0f3a2457;hb=27a60885389b016ac4087b3988ff3c45a19f7b8e;hp=4c16bf7b242a2f97646874eb4cbae12dc07f4d3e;hpb=2c5e030b8f4bca53a2db1994b4e468ad170385d0;p=psensor.git diff --git a/src/main.c b/src/main.c index 4c16bf7..67c1d6a 100644 --- a/src/main.c +++ b/src/main.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2010-2012 jeanfi@gmail.com + * Copyright (C) 2010-2013 jeanfi@gmail.com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as @@ -68,8 +68,6 @@ #include "cpu.h" #endif -#include "compat.h" - static const char *program_name; static void print_version() @@ -81,7 +79,7 @@ static void print_version() "This is free software: you are free to change and " " redistribute it.\n" "There is NO WARRANTY, to the extent permitted by law.\n"), - "2010-2012"); + "2010-2013"); } static void print_help() @@ -212,7 +210,7 @@ gboolean ui_refresh_thread(gpointer data) graph_update(ui->sensors, ui->w_graph, ui->config, ui->main_window); - ui_sensorlist_update(ui); + ui_sensorlist_update(ui, 0); if (is_appindicator_supported() || is_status_supported()) indicators_update(ui); @@ -585,16 +583,9 @@ int main(int argc, char **argv) /* main window */ ui_window_create(&ui); - ui.sensor_box = NULL; - - /* drawing box */ - ui.w_graph = ui_graph_create(&ui); ui_enable_alpha_channel(&ui); - /* sensor list */ - ui_sensorlist_create(&ui); - thread = g_thread_create((GThreadFunc) update_measures, &ui, TRUE, &error); @@ -622,7 +613,6 @@ int main(int argc, char **argv) else initial_window_show(&ui); - printf("main loop\n"); /* main loop */ gtk_main();