gnome-control-center/capplets/theme-switcher/main.c
Raja R Harinath c45bdbad82 `confdefs.h isn't a nice name for a header file. Since no other file uses
* 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.
1998-11-06 22:41:14 +00:00

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;
}