* capplets/theme-switcher/main.c (confdefs.h): `confdefs.h isn't a nice name for a header file. Since no other file uses it, just remove it. (THEME_SWITCHER_VERSION): New define. Is what `VERSION' was used for. (main): Use new name for `VERSION'. * capplets/theme-switcher/confdefs.h: Delete. * capplets/theme-switcher/config.h: Delete.
21 lines
349 B
C
21 lines
349 B
C
#include "da.h"
|
|
|
|
#define THEME_SWITCHER_VERSION "0.1"
|
|
|
|
int
|
|
main(int argc, char **argv)
|
|
{
|
|
GtkWidget *w;
|
|
|
|
set_tmp_rc();
|
|
do_demo(argc, argv);
|
|
gnome_capplet_init ("theme-switcher-capplet",
|
|
THEME_SWITCHER_VERSION, argc, argv, NULL, 0, NULL);
|
|
|
|
w = make_main();
|
|
gtk_widget_show_all(w);
|
|
send_socket();
|
|
|
|
gtk_main();
|
|
return 0;
|
|
}
|