diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2011-07-18 19:27:37 +0200 |
---|---|---|
committer | Marc-André Lureau <marcandre.lureau@redhat.com> | 2011-07-18 19:27:59 +0200 |
commit | f1943df6680cd2d9b7b515c7d806a67ff91d2036 (patch) | |
tree | 5ed12b7bad2525ee5ac92dd8abce32c3b64d013e /gtk/channel-inputs.h | |
parent | 0cb3dba038fda87b6a5062d1a5d1e3a4553bad1b (diff) |
build: fix introspection warnings
The only one left is related to GOptionGroup, which is not boxed.
Diffstat (limited to 'gtk/channel-inputs.h')
-rw-r--r-- | gtk/channel-inputs.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/channel-inputs.h b/gtk/channel-inputs.h index c2f1f1d..bd3923b 100644 --- a/gtk/channel-inputs.h +++ b/gtk/channel-inputs.h @@ -31,7 +31,7 @@ G_BEGIN_DECLS typedef struct _SpiceInputsChannel SpiceInputsChannel; typedef struct _SpiceInputsChannelClass SpiceInputsChannelClass; -typedef struct spice_inputs_channel spice_inputs_channel; +typedef struct _SpiceInputsChannelPrivate SpiceInputsChannelPrivate; typedef enum { SPICE_INPUTS_SCROLL_LOCK = (1 << 0), @@ -41,7 +41,7 @@ typedef enum { struct _SpiceInputsChannel { SpiceChannel parent; - spice_inputs_channel *priv; + SpiceInputsChannelPrivate *priv; /* Do not add fields to this struct */ }; @@ -65,8 +65,8 @@ void spice_inputs_button_press(SpiceInputsChannel *channel, gint button, gint button_state); void spice_inputs_button_release(SpiceInputsChannel *channel, gint button, gint button_state); -void spice_inputs_key_press(SpiceInputsChannel *channel, guint keyval); -void spice_inputs_key_release(SpiceInputsChannel *channel, guint keyval); +void spice_inputs_key_press(SpiceInputsChannel *channel, guint scancode); +void spice_inputs_key_release(SpiceInputsChannel *channel, guint scancode); void spice_inputs_set_key_locks(SpiceInputsChannel *channel, guint locks); G_END_DECLS |