summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKhaled Hosny <khaledhosny@eglug.org>2015-05-17 12:28:30 +0200
committerKhaled Hosny <khaledhosny@eglug.org>2015-05-17 12:28:30 +0200
commitef54df4895e1dfebbaa95c92114e8258dc18eda2 (patch)
tree68295675f407c5e34593030c0b18da1dfa413048
parentc2f0c7b73942721d1ab04a223ed0d75178973f7d (diff)
downloadpango-ef54df4895e1dfebbaa95c92114e8258dc18eda2.tar.gz
Fix other used of “Deprecated: 1.38”
Follow-up of the previous commit.
-rw-r--r--pango/modules.c8
-rw-r--r--pango/pango-engine.c6
-rw-r--r--pango/pango-engine.h34
-rw-r--r--pango/pango-fontmap.c2
-rw-r--r--pango/pango-modules.h2
5 files changed, 26 insertions, 26 deletions
diff --git a/pango/modules.c b/pango/modules.c
index 4705979b..8d2686d3 100644
--- a/pango/modules.c
+++ b/pango/modules.c
@@ -41,7 +41,7 @@
*
* Return value: %NULL.
*
- * Deprecated: 1.37
+ * Deprecated: 1.38
**/
PangoMap *
pango_find_map (PangoLanguage *language G_GNUC_UNUSED,
@@ -60,7 +60,7 @@ pango_find_map (PangoLanguage *language G_GNUC_UNUSED,
*
* Return value: %NULL.
*
- * Deprecated: 1.37
+ * Deprecated: 1.38
**/
PangoEngine *
pango_map_get_engine (PangoMap *map G_GNUC_UNUSED,
@@ -81,7 +81,7 @@ pango_map_get_engine (PangoMap *map G_GNUC_UNUSED,
* Do not use. Does not do anything.
*
* Since: 1.4
- * Deprecated: 1.37
+ * Deprecated: 1.38
**/
void
pango_map_get_engines (PangoMap *map G_GNUC_UNUSED,
@@ -101,7 +101,7 @@ pango_map_get_engines (PangoMap *map G_GNUC_UNUSED,
*
* Do not use. Does not do anything.
*
- * Deprecated: 1.37
+ * Deprecated: 1.38
**/
void
pango_module_register (PangoIncludedModule *module G_GNUC_UNUSED)
diff --git a/pango/pango-engine.c b/pango/pango-engine.c
index f2797e48..3f3a3c3b 100644
--- a/pango/pango-engine.c
+++ b/pango/pango-engine.c
@@ -38,7 +38,7 @@
* creating engines from the module at run time, while the first
* function is used when building a catalog of all available modules.
*
- * Deprecated: 1.37
+ * Deprecated: 1.38
*/
/**
* SECTION:pango-engine-lang
@@ -50,7 +50,7 @@
* engines that determine line, word, and character breaks for character strings.
* These engines are used in pango_break().
*
- * Deprecated: 1.37
+ * Deprecated: 1.38
*/
/**
* SECTION:pango-engine-shape
@@ -62,7 +62,7 @@
* engines that convert character strings into glyph strings.
* These engines are used in pango_shape().
*
- * Deprecated: 1.37
+ * Deprecated: 1.38
*/
#include "config.h"
diff --git a/pango/pango-engine.h b/pango/pango-engine.h
index a06a6e2c..9645c2c5 100644
--- a/pango/pango-engine.h
+++ b/pango/pango-engine.h
@@ -38,7 +38,7 @@ G_BEGIN_DECLS
* A string constant defining the render type
* for engines that are not rendering-system specific.
*
- * Deprecated: 1.37
+ * Deprecated: 1.38
*/
#define PANGO_RENDER_TYPE_NONE "PangoRenderNone"
@@ -58,7 +58,7 @@ typedef struct _PangoEngineClass PangoEngineClass;
* #PangoEngine is the base class for all types of language and
* script specific engines. It has no functionality by itself.
*
- * Deprecated: 1.37
+ * Deprecated: 1.38
**/
struct _PangoEngine
{
@@ -71,7 +71,7 @@ struct _PangoEngine
*
* Class structure for #PangoEngine
*
- * Deprecated: 1.37
+ * Deprecated: 1.38
**/
struct _PangoEngineClass
{
@@ -87,7 +87,7 @@ GType pango_engine_get_type (void) G_GNUC_CONST;
* A string constant defining the engine type for language engines.
* These engines derive from #PangoEngineLang.
*
- * Deprecated: 1.37
+ * Deprecated: 1.38
*/
#define PANGO_ENGINE_TYPE_LANG "PangoEngineLang"
@@ -110,7 +110,7 @@ typedef struct _PangoEngineLangClass PangoEngineLangClass;
* Thai to implement the dictionary-based word boundary
* lookups needed for that language.
*
- * Deprecated: 1.37
+ * Deprecated: 1.38
**/
struct _PangoEngineLang
{
@@ -129,7 +129,7 @@ struct _PangoEngineLang
*
* Class structure for #PangoEngineLang
*
- * Deprecated: 1.37
+ * Deprecated: 1.38
**/
struct _PangoEngineLangClass
{
@@ -153,7 +153,7 @@ GType pango_engine_lang_get_type (void) G_GNUC_CONST;
* A string constant defining the engine type for shaping engines.
* These engines derive from #PangoEngineShape.
*
- * Deprecated: 1.37
+ * Deprecated: 1.38
*/
#define PANGO_ENGINE_TYPE_SHAPE "PangoEngineShape"
@@ -178,7 +178,7 @@ typedef struct _PangoEngineShapeClass PangoEngineShapeClass;
* #PangoEngineShape implementation to handle shaping Arabic
* for Fontconfig-based backends.
*
- * Deprecated: 1.37
+ * Deprecated: 1.38
**/
struct _PangoEngineShape
{
@@ -210,7 +210,7 @@ struct _PangoEngineShape
*
* Class structure for #PangoEngineShape
*
- * Deprecated: 1.37
+ * Deprecated: 1.38
**/
struct _PangoEngineShapeClass
{
@@ -254,7 +254,7 @@ typedef struct _PangoEngineScriptInfo PangoEngineScriptInfo;
* The #PangoEngineScriptInfo structure contains
* information about how the shaper covers a particular script.
*
- * Deprecated: 1.37
+ * Deprecated: 1.38
*/
struct _PangoEngineScriptInfo
{
@@ -273,7 +273,7 @@ struct _PangoEngineScriptInfo
* The #PangoEngineInfo structure contains information about a particular
* engine. It contains the following fields:
*
- * Deprecated: 1.37
+ * Deprecated: 1.38
*/
struct _PangoEngineInfo
{
@@ -291,7 +291,7 @@ struct _PangoEngineInfo
*
* Do not use.
*
- * Deprecated: 1.37
+ * Deprecated: 1.38
**/
G_DEPRECATED
void script_engine_list (PangoEngineInfo **engines,
@@ -304,7 +304,7 @@ void script_engine_list (PangoEngineInfo **engines,
*
* Do not use.
*
- * Deprecated: 1.37
+ * Deprecated: 1.38
**/
G_DEPRECATED
void script_engine_init (GTypeModule *module);
@@ -315,7 +315,7 @@ void script_engine_init (GTypeModule *module);
*
* Do not use.
*
- * Deprecated: 1.37
+ * Deprecated: 1.38
**/
G_DEPRECATED
void script_engine_exit (void);
@@ -326,7 +326,7 @@ void script_engine_exit (void);
*
* Do not use.
*
- * Deprecated: 1.37
+ * Deprecated: 1.38
**/
G_DEPRECATED
PangoEngine *script_engine_create (const char *id);
@@ -383,7 +383,7 @@ prefix ## _register_type (GTypeModule *module) \
* PangoEngine *engine = g_object_new (<replaceable>prefix</replaceable>_type, NULL);
* </programlisting></informalexample>
*
- * Deprecated: 1.37
+ * Deprecated: 1.38
**/
#define PANGO_ENGINE_LANG_DEFINE_TYPE(name, prefix, class_init, instance_init) \
PANGO_ENGINE_DEFINE_TYPE (name, prefix, \
@@ -415,7 +415,7 @@ prefix ## _register_type (GTypeModule *module) \
* PangoEngine *engine = g_object_new (<replaceable>prefix</replaceable>_type, NULL);
* </programlisting></informalexample>
*
- * Deprecated: 1.37
+ * Deprecated: 1.38
**/
#define PANGO_ENGINE_SHAPE_DEFINE_TYPE(name, prefix, class_init, instance_init) \
PANGO_ENGINE_DEFINE_TYPE (name, prefix, \
diff --git a/pango/pango-fontmap.c b/pango/pango-fontmap.c
index 6272a159..ff066bef 100644
--- a/pango/pango-fontmap.c
+++ b/pango/pango-fontmap.c
@@ -275,7 +275,7 @@ pango_font_map_real_load_fontset (PangoFontMap *fontmap,
* or freed.
*
* Since: 1.4
- * Deprecated: 1.37
+ * Deprecated: 1.38
**/
const char *
pango_font_map_get_shape_engine_type (PangoFontMap *fontmap)
diff --git a/pango/pango-modules.h b/pango/pango-modules.h
index d1b2c8b3..97fb39e3 100644
--- a/pango/pango-modules.h
+++ b/pango/pango-modules.h
@@ -44,7 +44,7 @@ typedef struct _PangoIncludedModule PangoIncludedModule;
* contains the functions that would otherwise be loaded from a dynamically
* loaded module.
*
- * Deprecated: 1.37
+ * Deprecated: 1.38
*/
struct _PangoIncludedModule
{