gnome-control-center/capplets/theme-switcher/main.c
Richard Hestilow bf1d38501d Partial revamp to use bonobo control instead of bug-prone custom socket;
2001-12-08  Richard Hestilow  <hestilow@ximian.com>

	* Partial revamp to use bonobo control instead of bug-prone
	custom socket; also port away from libcapplet.
2001-12-09 03:38:35 +00:00

29 lines
439 B
C

#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include "da.h"
#define THEME_SWITCHER_VERSION "0.1"
int
main(int argc, char **argv)
{
GtkWidget *w;
bindtextdomain (PACKAGE, GNOMELOCALEDIR);
textdomain (PACKAGE);
set_tmp_rc();
gnome_program_init ("gtk-theme-selector", THEME_SWITCHER_VERSION,
LIBGNOMEUI_MODULE, argc, argv, NULL);
w = make_main();
gtk_widget_show_all(w);
gtk_main();
return 0;
}