Commit e92f2d3f5067060aa07ff28e955f98f0166d61a0
1 parent
457df537
Exists in
master
and in
1 other branch
Add missing includes
Without this patch, gcc10 compilation issued warnings such as src/terminal/colors.c:85:2: warning: implicit declaration of function ] 85 | v3270_emit_save_settings(widget);
Showing
4 changed files
with
4 additions
and
0 deletions
Show diff stats
src/dialogs/popups.c
@@ -31,6 +31,7 @@ | @@ -31,6 +31,7 @@ | ||
31 | #include <internals.h> | 31 | #include <internals.h> |
32 | #include <terminal.h> | 32 | #include <terminal.h> |
33 | #include <v3270/dialogs.h> | 33 | #include <v3270/dialogs.h> |
34 | + #include <v3270/settings.h> | ||
34 | 35 | ||
35 | /*--[ Implement ]------------------------------------------------------------------------------------*/ | 36 | /*--[ Implement ]------------------------------------------------------------------------------------*/ |
36 | 37 |
src/selection/selection.c
@@ -29,6 +29,7 @@ | @@ -29,6 +29,7 @@ | ||
29 | 29 | ||
30 | #include <clipboard.h> | 30 | #include <clipboard.h> |
31 | #include <lib3270/selection.h> | 31 | #include <lib3270/selection.h> |
32 | + #include <v3270/settings.h> | ||
32 | 33 | ||
33 | /*--[ Implement ]------------------------------------------------------------------------------------*/ | 34 | /*--[ Implement ]------------------------------------------------------------------------------------*/ |
34 | 35 |
src/terminal/colors.c
@@ -32,6 +32,7 @@ | @@ -32,6 +32,7 @@ | ||
32 | 32 | ||
33 | #include <lib3270.h> | 33 | #include <lib3270.h> |
34 | #include <lib3270/log.h> | 34 | #include <lib3270/log.h> |
35 | + #include <v3270/settings.h> | ||
35 | 36 | ||
36 | /*--[ Implement ]------------------------------------------------------------------------------------*/ | 37 | /*--[ Implement ]------------------------------------------------------------------------------------*/ |
37 | 38 |
src/terminal/font/properties.c
@@ -30,6 +30,7 @@ | @@ -30,6 +30,7 @@ | ||
30 | #include <config.h> | 30 | #include <config.h> |
31 | #include "private.h" | 31 | #include "private.h" |
32 | #include <gdk/gdk.h> | 32 | #include <gdk/gdk.h> |
33 | + #include <v3270/settings.h> | ||
33 | 34 | ||
34 | /*--[ Globals ]--------------------------------------------------------------------------------------*/ | 35 | /*--[ Globals ]--------------------------------------------------------------------------------------*/ |
35 | 36 |