Commit 17eb7bf94081438e4fc03c887be131635db6c297

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

Updating toggle API.

client/src/session/local/session.cc
... ... @@ -39,6 +39,7 @@
39 39 #include <ipc-client-internals.h>
40 40 #include <lib3270/actions.h>
41 41 #include <lib3270/properties.h>
  42 + #include <lib3270/toggle.h>
42 43 #include <cstring>
43 44  
44 45 extern "C" {
... ...
server/src/core/getproperties.c
... ... @@ -36,6 +36,7 @@
36 36 #include <lib3270/ipc-glib.h>
37 37 #include <lib3270.h>
38 38 #include <lib3270/properties.h>
  39 +#include <lib3270/toggle.h>
39 40 #include <lib3270/trace.h>
40 41  
41 42 GVariant * ipc3270_get_property(GObject *object, const gchar *property_name, GError **error) {
... ...
server/src/core/linux/gobject.c
... ... @@ -36,6 +36,7 @@
36 36 #include <lib3270.h>
37 37 #include <lib3270/actions.h>
38 38 #include <lib3270/properties.h>
  39 +#include <lib3270/toggle.h>
39 40  
40 41 #include <dbus/dbus-glib.h>
41 42 #include <dbus/dbus-glib-bindings.h>
... ...
server/src/core/setproperties.c
... ... @@ -36,6 +36,7 @@
36 36 #include <lib3270/ipc-glib.h>
37 37 #include <lib3270.h>
38 38 #include <lib3270/properties.h>
  39 +#include <lib3270/toggle.h>
39 40 #include <lib3270/trace.h>
40 41  
41 42 gboolean ipc3270_set_property(GObject *object, const gchar *property_name, GVariant *value, GError **error) {
... ...