diff options
author | Frediano Ziglio <freddy77@gmail.com> | 2023-07-02 17:36:01 +0100 |
---|---|---|
committer | Frediano Ziglio <freddy77@gmail.com> | 2023-07-02 17:36:01 +0100 |
commit | 004ff13af15c683816ef0190861d4623d2aa7e45 (patch) | |
tree | 074b2a0e33e57f9a426909f480dae87525069e1a | |
parent | 7e87382b585a799ced543b0c3fd127b2a813285f (diff) |
Fix some minor versions documentation
Fix some "Since" field in function documentation.
Nobody should nowadays use versions old like these but good to
have them fixed.
Function presence was checked looking at map-file and code
presence.
Signed-off-by: Frediano Ziglio <freddy77@gmail.com>
-rw-r--r-- | src/channel-inputs.c | 2 | ||||
-rw-r--r-- | src/smartcard-manager.c | 4 | ||||
-rw-r--r-- | src/spice-channel.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/channel-inputs.c b/src/channel-inputs.c index fcdf701..9183d39 100644 --- a/src/channel-inputs.c +++ b/src/channel-inputs.c @@ -611,7 +611,7 @@ void spice_inputs_channel_key_release(SpiceInputsChannel *channel, guint scancod * * Press and release a key event atomically (in the same message). * - * Since: 0.13 + * Since: 0.14 * * Deprecated: 0.35 **/ diff --git a/src/smartcard-manager.c b/src/smartcard-manager.c index bb97ad7..08a409a 100644 --- a/src/smartcard-manager.c +++ b/src/smartcard-manager.c @@ -638,7 +638,7 @@ GList *spice_smartcard_manager_get_readers(SpiceSmartcardManager *manager) * Returns: TRUE if smartcard insertion was successfully simulated, FALSE * if this failed, or if software smartcard support isn't enabled. * - * Since: 0.20 + * Since: 0.7 */ gboolean spice_smartcard_manager_insert_card(SpiceSmartcardManager *manager) { @@ -662,7 +662,7 @@ gboolean spice_smartcard_manager_insert_card(SpiceSmartcardManager *manager) * Returns: TRUE if smartcard removal was successfully simulated, FALSE * if this failed, or if software smartcard support isn't enabled. * - * Since: 0.20 + * Since: 0.7 */ gboolean spice_smartcard_manager_remove_card(SpiceSmartcardManager *manager) { diff --git a/src/spice-channel.c b/src/spice-channel.c index 3fd42c5..14fce5a 100644 --- a/src/spice-channel.c +++ b/src/spice-channel.c @@ -2193,7 +2193,7 @@ static const char *to_string[] = { * Convert a channel-type property value to a string. * * Returns: string representation of @type. - * Since: 0.20 + * Since: 0.7 **/ const gchar* spice_channel_type_to_string(gint type) { |