Change #if USE_WIN32_FILE_DIALOGS to #ifdef

It should fix buldbot compilation error:
  capture_file_dlg.c(2107) : fatal error C1017: invalid integer constant expression

svn path=/trunk/; revision=43441
This commit is contained in:
Jakub Zawadzki 2012-06-22 08:22:11 +00:00
parent a862178702
commit 557ed446c9
1 changed files with 1 additions and 1 deletions

View File

@ -2104,7 +2104,7 @@ color_toggle_selected_cb(GtkWidget *widget, gpointer data _U_)
void
file_color_export_cmd_cb(GtkWidget *w _U_, gpointer filter_list)
{
#if USE_WIN32_FILE_DIALOGS
#ifdef USE_WIN32_FILE_DIALOGS
win32_export_color_file(GDK_WINDOW_HWND(gtk_widget_get_window(top_level)), filter_list);
#else /* USE_WIN32_FILE_DIALOGS */
GtkWidget *file_color_export_w;