gdkborder: remove unneeded definition

This reverts 54fa65f544,
5190d010d9, and
a6e4de2884.

https://bugzilla.gnome.org/show_bug.cgi?id=756579
This commit is contained in:
William Hua
2016-02-03 10:20:30 -05:00
parent 0bcd8603eb
commit 9b08853537
2 changed files with 0 additions and 23 deletions

View File

@ -93,26 +93,6 @@ typedef struct _GdkRectangle GdkRectangle;
typedef cairo_rectangle_int_t GdkRectangle;
#endif
typedef struct _GdkBorder GdkBorder;
/**
* GdkBorder:
* @left: The width of the left border
* @right: The width of the right border
* @top: The width of the top border
* @bottom: The width of the bottom border
*
* A struct that specifies a border around a rectangular area
* that can be of different width on each side.
*/
struct _GdkBorder
{
gint left;
gint right;
gint top;
gint bottom;
};
/**
* GdkAtom:
*