view finch/libgnt/test/file.c @ 15911:0592a7b4db86

This was giving me a warning saying the function wasn't previously declared
author Mark Doliner <mark@kingant.net>
date Sun, 25 Mar 2007 03:30:58 +0000
parents 3da9d5da9054
children f00f2e283ffb
line wrap: on
line source

#include "gnt.h"
#include "gntfilesel.h"

int main()
{
	freopen(".error", "w", stderr);
	gnt_init();

	GntWidget *w = gnt_file_sel_new();
	gnt_file_sel_set_current_location(GNT_FILE_SEL(w), "/home/");
	gnt_file_sel_set_dirs_only(GNT_FILE_SEL(w), TRUE);
	gnt_widget_show(w);

	gnt_main();

	gnt_quit();
	return 0;
}