After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 77566 - struct _PangoFontDefinition defined in the wrong place
struct _PangoFontDefinition defined in the wrong place
Status: RESOLVED NOTABUG
Product: pango
Classification: Platform
Component: general
1.0.x
Other Linux
: Normal normal
: ---
Assigned To: Owen Taylor
Owen Taylor
Depends on:
Blocks:
 
 
Reported: 2002-04-04 03:07 UTC by cgray4
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description cgray4 2002-04-04 03:07:09 UTC
--- pango-font.h~       Sat Feb 23 15:14:20 2002
+++ pango-font.h        Wed Apr  3 21:59:53 2002
@@ -94,6 +94,21 @@
  * PangoFontDescription
  */
 
+struct _PangoFontDescription
+{
+  char *family_name;
+
+  PangoStyle style;
+  PangoVariant variant;
+  PangoWeight weight;
+  PangoStretch stretch;
+
+  guint16 mask;
+  guint static_family : 1;
+
+  int size;
+};
+
 #define PANGO_TYPE_FONT_DESCRIPTION (pango_font_description_get_type ())
 
 GType                 pango_font_description_get_type    (void);

--- fonts.c~    Mon Mar 25 15:21:16 2002
+++ fonts.c     Wed Apr  3 21:59:54 2002
@@ -28,21 +28,6 @@
 #include "pango-fontmap.h"
 #include "pango-utils.h"
 
-struct _PangoFontDescription
-{
-  char *family_name;
-
-  PangoStyle style;
-  PangoVariant variant;
-  PangoWeight weight;
-  PangoStretch stretch;
-
-  guint16 mask;
-  guint static_family : 1;
-
-  int size;
-};
-
 GType
 pango_font_description_get_type (void)
 {
Comment 1 Owen Taylor 2002-04-04 16:28:27 UTC
It is intentionally where it is. The contents of this structure
are private and may change in future releases.