2004-12-07 Mike Kestner <mkestner@novell.com>
* gtk/glue/style.c : add missing method and prototype. [Fixes #70216] svn path=/trunk/gtk-sharp/; revision=37350
This commit is contained in:
parent
993d91fa31
commit
480af4c763
2 changed files with 12 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
2004-12-07 Mike Kestner <mkestner@novell.com>
|
||||
|
||||
* gtk/glue/style.c : add missing method and prototype. [Fixes #70216]
|
||||
|
||||
2004-12-07 Mike Kestner <mkestner@novell.com>
|
||||
|
||||
* */*.cs : s/glue-2.0/glue-2 so that dllimport works on win32.
|
||||
|
|
|
@ -67,6 +67,8 @@ GdkColor *gtksharp_gtk_style_get_fg (GtkStyle *style, int i);
|
|||
|
||||
GdkColor *gtksharp_gtk_style_get_bg (GtkStyle *style, int i);
|
||||
|
||||
GdkColor *gtksharp_gtk_style_get_mid (GtkStyle *style, int i);
|
||||
|
||||
GdkColor *gtksharp_gtk_style_get_text (GtkStyle *style, int i);
|
||||
|
||||
GdkColor *gtksharp_gtk_style_get_base (GtkStyle *style, int i);
|
||||
|
@ -229,6 +231,12 @@ gtksharp_gtk_style_get_mid (GtkStyle *style, int i)
|
|||
return &style->mid[i];
|
||||
}
|
||||
|
||||
GdkColor*
|
||||
gtksharp_gtk_style_get_text (GtkStyle *style, int i)
|
||||
{
|
||||
return &style->text[i];
|
||||
}
|
||||
|
||||
GdkColor*
|
||||
gtksharp_gtk_style_get_base (GtkStyle *style, int i)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue