Commit c75b574bd92b532472f1cba4c9f8695a42263f28

Authored by Perry Werneck
1 parent ec856af7
Exists in master and in 1 other branch develop

Fixing deb builds

Removing warnings.
src/dialogs/print/settings.c
... ... @@ -144,11 +144,11 @@ LIB3270_EXPORT void v3270_print_settings_set_show_selection(GtkWidget *widget, g
144 144  
145 145 LIB3270_EXPORT gchar * v3270_print_settings_get_color_scheme(GtkWidget *widget)
146 146 {
147   - return v3270_color_scheme_get_text(GTK_V3270_COLOR_SCHEME(GTK_V3270_PRINT_SETTINGS(widget)->color));
  147 + return v3270_color_scheme_get_text((GTK_V3270_PRINT_SETTINGS(widget)->color));
148 148 }
149 149  
150 150 LIB3270_EXPORT void v3270_print_settings_set_color_scheme(GtkWidget *widget, const gchar *colors)
151 151 {
152   - v3270_color_scheme_set_text(GTK_V3270_COLOR_SCHEME(GTK_V3270_PRINT_SETTINGS(widget)->color), colors);
  152 + v3270_color_scheme_set_text(GTK_V3270_PRINT_SETTINGS(widget)->color, colors);
153 153 }
154 154  
... ...
src/dialogs/save/convenience.c
... ... @@ -27,10 +27,10 @@
27 27 *
28 28 */
29 29  
30   - #include <config.h>
  30 + #include "private.h"
  31 + #include <internals.h>
31 32 #include <errno.h>
32 33 #include <string.h>
33   - #include "private.h"
34 34  
35 35 /*--[ Implement ]------------------------------------------------------------------------------------*/
36 36  
... ...