[gnome-builder] libide-io: update availability macros
- From: Christian Hergert <chergert src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-builder] libide-io: update availability macros
- Date: Tue, 12 Jul 2022 06:39:08 +0000 (UTC)
commit 5329149f5af983010a40eccb642396d7f02c04f7
Author: Christian Hergert <chergert redhat com>
Date: Mon Jul 11 16:38:55 2022 -0700
libide-io: update availability macros
src/libide/io/ide-content-type.c | 2 --
src/libide/io/ide-content-type.h | 2 +-
src/libide/io/ide-gfile.c | 28 ----------------------------
src/libide/io/ide-gfile.h | 30 +++++++++++++++---------------
src/libide/io/ide-line-reader.c | 2 --
src/libide/io/ide-line-reader.h | 4 ++--
src/libide/io/ide-marked-content.c | 16 ----------------
src/libide/io/ide-marked-content.h | 18 +++++++++---------
src/libide/io/ide-path.c | 6 ------
src/libide/io/ide-path.h | 10 +++++-----
src/libide/io/ide-persistent-map-builder.c | 2 --
src/libide/io/ide-persistent-map-builder.h | 14 +++++++-------
src/libide/io/ide-persistent-map.c | 4 ----
src/libide/io/ide-persistent-map.h | 14 +++++++-------
src/libide/io/ide-pkcon-transfer.h | 4 ++--
15 files changed, 48 insertions(+), 108 deletions(-)
---
diff --git a/src/libide/io/ide-content-type.c b/src/libide/io/ide-content-type.c
index 6a46d9292..144276820 100644
--- a/src/libide/io/ide-content-type.c
+++ b/src/libide/io/ide-content-type.c
@@ -131,8 +131,6 @@ ide_io_init_ctor (void)
* In 3.40, this function was modified to add the @filename parameter.
*
* Returns: (transfer full) (nullable): A #GIcon or %NULL
- *
- * Since: 3.40
*/
GIcon *
ide_g_content_type_get_symbolic_icon (const gchar *content_type,
diff --git a/src/libide/io/ide-content-type.h b/src/libide/io/ide-content-type.h
index 7311ebed7..e721b8927 100644
--- a/src/libide/io/ide-content-type.h
+++ b/src/libide/io/ide-content-type.h
@@ -24,7 +24,7 @@
G_BEGIN_DECLS
-IDE_AVAILABLE_IN_3_40
+IDE_AVAILABLE_IN_ALL
GIcon *ide_g_content_type_get_symbolic_icon (const gchar *content_type,
const gchar *filename);
diff --git a/src/libide/io/ide-gfile.c b/src/libide/io/ide-gfile.c
index a7cca987d..cee25199d 100644
--- a/src/libide/io/ide-gfile.c
+++ b/src/libide/io/ide-gfile.c
@@ -62,8 +62,6 @@ get_ignored_locked (void)
* to the application, so they should only include well-known ignored files
* such as those internal to a build system, or version control system, and
* similar.
- *
- * Since: 3.32
*/
void
ide_g_file_add_ignored_pattern (const gchar *pattern)
@@ -81,8 +79,6 @@ ide_g_file_add_ignored_pattern (const gchar *pattern)
* ignores registered with Builder.
*
* Returns: %TRUE if @path should be ignored, otherwise %FALSE
- *
- * Since: 3.32
*/
gboolean
ide_path_is_ignored (const gchar *path)
@@ -133,8 +129,6 @@ ide_path_is_ignored (const gchar *path)
* care about the version control system, see #IdeVcs and ide_vcs_is_ignored().
*
* Returns: %TRUE if @file should be ignored; otherwise %FALSE.
- *
- * Since: 3.32
*/
gboolean
ide_g_file_is_ignored (GFile *file)
@@ -193,8 +187,6 @@ ide_g_file_is_ignored (GFile *file)
*
* Returns: (nullable): A relative path, or %NULL if no common ancestor was
* found for the relative path.
- *
- * Since: 3.32
*/
gchar *
ide_g_file_get_uncanonical_relative_path (GFile *file,
@@ -352,8 +344,6 @@ delayed_run (gpointer data)
*
* This can be convenient when you know you need all of the #GFileInfo
* accessable at once, or the size will be small.
- *
- * Since: 3.32
*/
void
ide_g_file_get_children_async (GFile *file,
@@ -402,8 +392,6 @@ ide_g_file_get_children_async (GFile *file,
*
* Returns: (transfer full) (element-type Gio.FileInfo): A #GPtrArray
* of #GFileInfo if successful, otherwise %NULL.
- *
- * Since: 3.32
*/
GPtrArray *
ide_g_file_get_children_finish (GFile *file,
@@ -530,8 +518,6 @@ ide_g_file_find_worker (IdeTask *task,
*
*
* Returns: (transfer full) (element-type GFile): a #GPtrArray of #GFile.
- *
- * Since: 3.32
*/
GPtrArray *
ide_g_file_find_with_depth (GFile *file,
@@ -574,8 +560,6 @@ ide_g_file_find_with_depth (GFile *file,
* @max_depth is zero, then all directories will be searched.
*
* You may only match on the filename, not the directory.
- *
- * Since: 3.32
*/
void
ide_g_file_find_with_depth_async (GFile *file,
@@ -628,8 +612,6 @@ ide_g_file_find_with_depth_async (GFile *file,
* Searches descendants of @file for files matching @pattern.
*
* You may only match on the filename, not the directory.
- *
- * Since: 3.32
*/
void
ide_g_file_find_async (GFile *file,
@@ -650,8 +632,6 @@ ide_g_file_find_async (GFile *file,
* Gets the files that were found which matched the pattern.
*
* Returns: (transfer full) (element-type Gio.File): A #GPtrArray of #GFile
- *
- * Since: 3.32
*/
GPtrArray *
ide_g_file_find_finish (GFile *file,
@@ -679,8 +659,6 @@ ide_g_file_find_finish (GFile *file,
* the file from the host, rather than our mount namespace.
*
* Returns: %TRUE if successful; otherwise %FALSE and @error is set.
- *
- * Since: 3.32
*/
gboolean
ide_g_host_file_get_contents (const gchar *path,
@@ -760,8 +738,6 @@ failure:
*
* If @ignore_file is set, this function will check to see if that file exists
* within @directory and skip it (and all descendants) if discovered.
- *
- * Since: 3.34
*/
void
ide_g_file_walk_with_ignore (GFile *directory,
@@ -869,8 +845,6 @@ ide_g_file_walk_with_ignore (GFile *directory,
*
* All of the fileinfo for the directory will be provided to the callback for
* each directory.
- *
- * Since: 3.32
*/
void
ide_g_file_walk (GFile *directory,
@@ -1026,8 +1000,6 @@ ide_g_file_find_in_ancestors_async (GFile *directory,
*
* Returns: (transfer full): a #GFile if successful; otherwise %NULL
* and @error is et.
- *
- * Since: 3.34
*/
GFile *
ide_g_file_find_in_ancestors_finish (GAsyncResult *result,
diff --git a/src/libide/io/ide-gfile.h b/src/libide/io/ide-gfile.h
index a1ac2817f..ced06271d 100644
--- a/src/libide/io/ide-gfile.h
+++ b/src/libide/io/ide-gfile.h
@@ -40,38 +40,38 @@ typedef void (*IdeFileWalkCallback) (GFile *directory,
G_BEGIN_DECLS
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
gboolean ide_path_is_ignored (const gchar *path);
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
gboolean ide_g_file_is_ignored (GFile *file);
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
void ide_g_file_add_ignored_pattern (const gchar *pattern);
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
gchar *ide_g_file_get_uncanonical_relative_path (GFile *file,
GFile *other);
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
GPtrArray *ide_g_file_find_with_depth (GFile *file,
const gchar *pattern,
guint max_depth,
GCancellable *cancellable);
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
void ide_g_file_find_with_depth_async (GFile *file,
const gchar *pattern,
guint max_depth,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
void ide_g_file_find_async (GFile *file,
const gchar *pattern,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
GPtrArray *ide_g_file_find_finish (GFile *file,
GAsyncResult *result,
GError **error);
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
void ide_g_file_get_children_async (GFile *file,
const gchar *attributes,
GFileQueryInfoFlags flags,
@@ -79,35 +79,35 @@ void ide_g_file_get_children_async (GFile *file,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
GPtrArray *ide_g_file_get_children_finish (GFile *file,
GAsyncResult *result,
GError **error);
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
gboolean ide_g_host_file_get_contents (const gchar *path,
gchar **contents,
gsize *len,
GError **error);
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
void ide_g_file_walk (GFile *directory,
const gchar *attributes,
GCancellable *cancellable,
IdeFileWalkCallback callback,
gpointer callback_data);
-IDE_AVAILABLE_IN_3_34
+IDE_AVAILABLE_IN_ALL
void ide_g_file_walk_with_ignore (GFile *directory,
const gchar *attributes,
const gchar *ignore_file,
GCancellable *cancellable,
IdeFileWalkCallback callback,
gpointer callback_data);
-IDE_AVAILABLE_IN_3_34
+IDE_AVAILABLE_IN_ALL
void ide_g_file_find_in_ancestors_async (GFile *directory,
const gchar *name,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
-IDE_AVAILABLE_IN_3_34
+IDE_AVAILABLE_IN_ALL
GFile *ide_g_file_find_in_ancestors_finish (GAsyncResult *result,
GError **error);
diff --git a/src/libide/io/ide-line-reader.c b/src/libide/io/ide-line-reader.c
index 042531e79..10a1b5e8c 100644
--- a/src/libide/io/ide-line-reader.c
+++ b/src/libide/io/ide-line-reader.c
@@ -61,8 +61,6 @@ ide_line_reader_init (IdeLineReader *reader,
* you must provide @length to determine the length of the line.
*
* Returns: (transfer none): The beginning of the line within the buffer.
- *
- * Since: 3.32
*/
gchar *
ide_line_reader_next (IdeLineReader *reader,
diff --git a/src/libide/io/ide-line-reader.h b/src/libide/io/ide-line-reader.h
index 8e2a275fb..681de7e15 100644
--- a/src/libide/io/ide-line-reader.h
+++ b/src/libide/io/ide-line-reader.h
@@ -31,11 +31,11 @@ typedef struct
gssize pos;
} IdeLineReader;
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
void ide_line_reader_init (IdeLineReader *reader,
gchar *contents,
gssize length);
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
gchar *ide_line_reader_next (IdeLineReader *reader,
gsize *length);
diff --git a/src/libide/io/ide-marked-content.c b/src/libide/io/ide-marked-content.c
index 221e99440..9b8009117 100644
--- a/src/libide/io/ide-marked-content.c
+++ b/src/libide/io/ide-marked-content.c
@@ -47,8 +47,6 @@ G_DEFINE_BOXED_TYPE (IdeMarkedContent,
* Creates a new #IdeMarkedContent using the bytes provided.
*
* Returns: (transfer full): an #IdeMarkedContent
- *
- * Since: 3.32
*/
IdeMarkedContent *
ide_marked_content_new (GBytes *content,
@@ -75,8 +73,6 @@ ide_marked_content_new (GBytes *content,
* with the contents of @string.
*
* Returns: (transfer full): an #IdeMarkedContent
- *
- * Since: 3.32
*/
IdeMarkedContent *
ide_marked_content_new_plaintext (const gchar *plaintext)
@@ -96,8 +92,6 @@ ide_marked_content_new_plaintext (const gchar *plaintext)
* Creates a new #IdeMarkedContent from the provided data.
*
* Returns: (transfer full): an #IdeMarkedContent
- *
- * Since: 3.32
*/
IdeMarkedContent *
ide_marked_content_new_from_data (const gchar *data,
@@ -124,8 +118,6 @@ ide_marked_content_new_from_data (const gchar *data,
* ide_marked_content_unref(), it will be freed.
*
* Returns: (transfer full): @self with the reference count incremented
- *
- * Since: 3.32
*/
IdeMarkedContent *
ide_marked_content_ref (IdeMarkedContent *self)
@@ -146,8 +138,6 @@ ide_marked_content_ref (IdeMarkedContent *self)
* Decrements the reference count of @self by one.
*
* When the reference count of @self reaches zero, it will be freed.
- *
- * Since: 3.32
*/
void
ide_marked_content_unref (IdeMarkedContent *self)
@@ -174,8 +164,6 @@ ide_marked_content_unref (IdeMarkedContent *self)
* This is used to display the content appropriately.
*
* Returns:
- *
- * Since: 3.32
*/
IdeMarkedKind
ide_marked_content_get_kind (IdeMarkedContent *self)
@@ -193,8 +181,6 @@ ide_marked_content_get_kind (IdeMarkedContent *self)
* Gets the bytes for the marked content.
*
* Returns: (transfer none): a #GBytes
- *
- * Since: 3.32
*/
GBytes *
ide_marked_content_get_bytes (IdeMarkedContent *self)
@@ -214,8 +200,6 @@ ide_marked_content_get_bytes (IdeMarkedContent *self)
* Gets the contents of the marked content as a C string.
*
* Returns: (transfer none) (nullable): the content as a string or %NULL
- *
- * Since: 3.32
*/
const gchar *
ide_marked_content_as_string (IdeMarkedContent *self,
diff --git a/src/libide/io/ide-marked-content.h b/src/libide/io/ide-marked-content.h
index 479148af0..85b50d434 100644
--- a/src/libide/io/ide-marked-content.h
+++ b/src/libide/io/ide-marked-content.h
@@ -40,27 +40,27 @@ typedef enum
IDE_MARKED_KIND_PANGO = 3,
} IdeMarkedKind;
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
GType ide_marked_content_get_type (void);
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
IdeMarkedContent *ide_marked_content_new (GBytes *content,
IdeMarkedKind kind);
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
IdeMarkedContent *ide_marked_content_new_plaintext (const gchar *plaintext);
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
IdeMarkedContent *ide_marked_content_new_from_data (const gchar *data,
gssize len,
IdeMarkedKind kind);
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
GBytes *ide_marked_content_get_bytes (IdeMarkedContent *self);
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
IdeMarkedKind ide_marked_content_get_kind (IdeMarkedContent *self);
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
const gchar *ide_marked_content_as_string (IdeMarkedContent *self,
gsize *len);
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
IdeMarkedContent *ide_marked_content_ref (IdeMarkedContent *self);
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
void ide_marked_content_unref (IdeMarkedContent *self);
G_DEFINE_AUTOPTR_CLEANUP_FUNC (IdeMarkedContent, ide_marked_content_unref)
diff --git a/src/libide/io/ide-path.c b/src/libide/io/ide-path.c
index 70da88a57..b20e128bd 100644
--- a/src/libide/io/ide-path.c
+++ b/src/libide/io/ide-path.c
@@ -39,8 +39,6 @@
*
* Returns: (transfer full): A newly allocated string containing the
* expansion. A copy of the input string upon failure to expand.
- *
- * Since: 3.32
*/
gchar *
ide_path_expand (const gchar *path)
@@ -99,8 +97,6 @@ ide_path_expand (const gchar *path)
* simply return a copy of @path.
*
* Returns: (transfer full): A new path, possibly collapsed.
- *
- * Since: 3.32
*/
gchar *
ide_path_collapse (const gchar *path)
@@ -166,8 +162,6 @@ ide_path_is_cpp_like (const gchar *path)
* the same as the container we're running within.
*
* Returns: (transfer full) (nullable): a path or %NULL
- *
- * Since: 3.34
*/
gchar *
ide_find_program_in_host_path (const gchar *program)
diff --git a/src/libide/io/ide-path.h b/src/libide/io/ide-path.h
index 6517e95fd..c72320db9 100644
--- a/src/libide/io/ide-path.h
+++ b/src/libide/io/ide-path.h
@@ -28,15 +28,15 @@
G_BEGIN_DECLS
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
gchar *ide_path_collapse (const gchar *path);
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
gchar *ide_path_expand (const gchar *path);
-IDE_AVAILABLE_IN_3_34
+IDE_AVAILABLE_IN_ALL
gboolean ide_path_is_c_like (const gchar *path);
-IDE_AVAILABLE_IN_3_34
+IDE_AVAILABLE_IN_ALL
gboolean ide_path_is_cpp_like (const gchar *path);
-IDE_AVAILABLE_IN_3_34
+IDE_AVAILABLE_IN_ALL
gchar *ide_find_program_in_host_path (const gchar *program);
G_END_DECLS
diff --git a/src/libide/io/ide-persistent-map-builder.c b/src/libide/io/ide-persistent-map-builder.c
index 1d8233e82..dd1928ca1 100644
--- a/src/libide/io/ide-persistent-map-builder.c
+++ b/src/libide/io/ide-persistent-map-builder.c
@@ -311,8 +311,6 @@ ide_persistent_map_builder_write_async (IdePersistentMapBuilder *self,
*
* Returns: %TRUE if the while was written successfully; otherwise %FALSE
* and @error is set.
- *
- * Since: 3.32
*/
gboolean
ide_persistent_map_builder_write_finish (IdePersistentMapBuilder *self,
diff --git a/src/libide/io/ide-persistent-map-builder.h b/src/libide/io/ide-persistent-map-builder.h
index 19bbb84e0..7d261a47b 100644
--- a/src/libide/io/ide-persistent-map-builder.h
+++ b/src/libide/io/ide-persistent-map-builder.h
@@ -27,34 +27,34 @@ G_BEGIN_DECLS
#define IDE_TYPE_PERSISTENT_MAP_BUILDER (ide_persistent_map_builder_get_type ())
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
G_DECLARE_FINAL_TYPE (IdePersistentMapBuilder, ide_persistent_map_builder, IDE, PERSISTENT_MAP_BUILDER,
GObject)
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
IdePersistentMapBuilder *ide_persistent_map_builder_new (void);
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
void ide_persistent_map_builder_insert (IdePersistentMapBuilder *self,
const gchar *key,
GVariant *value,
gboolean replace);
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
void ide_persistent_map_builder_set_metadata_int64 (IdePersistentMapBuilder *self,
const gchar *key,
gint64 value);
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
gboolean ide_persistent_map_builder_write (IdePersistentMapBuilder *self,
GFile
*destination,
gint
io_priority,
GCancellable
*cancellable,
GError **error);
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
void ide_persistent_map_builder_write_async (IdePersistentMapBuilder *self,
GFile
*destination,
gint
io_priority,
GCancellable
*cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
gboolean ide_persistent_map_builder_write_finish (IdePersistentMapBuilder *self,
GAsyncResult *result,
GError **error);
diff --git a/src/libide/io/ide-persistent-map.c b/src/libide/io/ide-persistent-map.c
index 50bf367d6..a30dee925 100644
--- a/src/libide/io/ide-persistent-map.c
+++ b/src/libide/io/ide-persistent-map.c
@@ -229,8 +229,6 @@ ide_persistent_map_load_file_async (IdePersistentMap *self,
* @error: a location for a #GError, or %NULL
*
* Returns: Whether file is loaded or not.
- *
- * Since: 3.32
*/
gboolean
ide_persistent_map_load_file_finish (IdePersistentMap *self,
@@ -249,8 +247,6 @@ ide_persistent_map_load_file_finish (IdePersistentMap *self,
* @key: key to lookup value
*
* Returns: (transfer full) : value associalted with @key.
- *
- * Since: 3.32
*/
GVariant *
ide_persistent_map_lookup_value (IdePersistentMap *self,
diff --git a/src/libide/io/ide-persistent-map.h b/src/libide/io/ide-persistent-map.h
index 8589c9068..14e66d9eb 100644
--- a/src/libide/io/ide-persistent-map.h
+++ b/src/libide/io/ide-persistent-map.h
@@ -25,29 +25,29 @@
#define IDE_TYPE_PERSISTENT_MAP (ide_persistent_map_get_type ())
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
G_DECLARE_FINAL_TYPE (IdePersistentMap, ide_persistent_map, IDE, PERSISTENT_MAP, GObject)
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
IdePersistentMap *ide_persistent_map_new (void);
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
gboolean ide_persistent_map_load_file (IdePersistentMap *self,
GFile *file,
GCancellable *cancellable,
GError **error);
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
void ide_persistent_map_load_file_async (IdePersistentMap *self,
GFile *file,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
gboolean ide_persistent_map_load_file_finish (IdePersistentMap *self,
GAsyncResult *result,
GError **error);
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
GVariant *ide_persistent_map_lookup_value (IdePersistentMap *self,
const gchar *key);
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
gint64 ide_persistent_map_builder_get_metadata_int64 (IdePersistentMap *self,
const gchar *key);
diff --git a/src/libide/io/ide-pkcon-transfer.h b/src/libide/io/ide-pkcon-transfer.h
index fe798e5ed..93f391b96 100644
--- a/src/libide/io/ide-pkcon-transfer.h
+++ b/src/libide/io/ide-pkcon-transfer.h
@@ -30,10 +30,10 @@ G_BEGIN_DECLS
#define IDE_TYPE_PKCON_TRANSFER (ide_pkcon_transfer_get_type())
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
G_DECLARE_FINAL_TYPE (IdePkconTransfer, ide_pkcon_transfer, IDE, PKCON_TRANSFER, IdeTransfer)
-IDE_AVAILABLE_IN_3_32
+IDE_AVAILABLE_IN_ALL
IdePkconTransfer *ide_pkcon_transfer_new (const gchar * const *packages);
G_END_DECLS
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]