Commit ecd966325f4ef58318abb6b0657ac9b7bad85fe2
1 parent
11c7ab0e
Exists in
master
and in
2 other branches
Returning to GtkApplication and dropping GtkOSXApplication.
Showing
1 changed file
with
2 additions
and
8 deletions
Show diff stats
src/objects/application/private.h
... | ... | @@ -46,19 +46,13 @@ |
46 | 46 | #include <lib3270.h> |
47 | 47 | #include <lib3270/log.h> |
48 | 48 | |
49 | -#ifdef __APPLE__ | |
50 | - #include <gtkosxapplication.h> | |
51 | -#endif // __APPLE__ | |
52 | - | |
53 | 49 | #include <pw3270/application.h> |
54 | 50 | |
55 | 51 | struct _pw3270Application { |
56 | -#ifdef __APPLE__ | |
57 | - GtkosxApplication parent; | |
58 | -#else | |
59 | 52 | GtkApplication parent; |
53 | +#ifndef __APPLE__ | |
60 | 54 | PW3270_UI_STYLE ui_style; |
61 | -#endif // __APPLE__ | |
55 | +#endif // !__APPLE__ | |
62 | 56 | |
63 | 57 | GSettings * settings; |
64 | 58 | GList * keypads; | ... | ... |