Move a var into #ifndef #USE_FILECOOSER to get rid of a warning. bug
2006-10-01 Kjartan Maraas <kmaraas@gnome.org> * filter-file.c: (get_widget): Move a var into #ifndef #USE_FILECOOSER to get rid of a warning. bug #332101. svn path=/trunk/; revision=32839
This commit is contained in:
committed by
Kjartan Maraas
parent
e23919d822
commit
90dfa49bf6
@ -1,3 +1,8 @@
|
||||
2006-10-01 Kjartan Maraas <kmaraas@gnome.org>
|
||||
|
||||
* filter-file.c: (get_widget): Move a var into #ifndef #USE_FILECOOSER
|
||||
to get rid of a warning. bug #332101.
|
||||
|
||||
2006-09-25 Ushveen Kaur <kushveen@novell.com>
|
||||
|
||||
** Fixes bug #324882
|
||||
|
||||
@ -287,7 +287,10 @@ static GtkWidget *
|
||||
get_widget (FilterElement *fe)
|
||||
{
|
||||
FilterFile *file = (FilterFile *) fe;
|
||||
GtkWidget *filewidget, *entry;
|
||||
GtkWidget *filewidget;
|
||||
#ifndef USE_GTKFILECHOOSER
|
||||
GtkWidget *entry;
|
||||
#endif
|
||||
|
||||
#ifdef USE_GTKFILECHOOSER
|
||||
filewidget = (GtkWidget *) gtk_file_chooser_button_new (_("Choose a file"), GTK_FILE_CHOOSER_ACTION_OPEN);
|
||||
|
||||
Reference in New Issue
Block a user