(trunk gtk) #4970 remove deprecated GTK+ API calls, raise GTK+ dependency to 3.2

This commit is contained in:
Jordan Lee
2012-07-14 19:26:55 +00:00
parent b6e0e48927
commit cdd71c6427
16 changed files with 114 additions and 303 deletions

View File

@@ -472,26 +472,6 @@ gtr_priority_combo_new( void )
****
***/
GtkWidget*
gtr_hbox_new( gboolean homogenous UNUSED, gint spacing )
{
#if GTK_CHECK_VERSION( 3,2,0 )
return gtk_box_new( GTK_ORIENTATION_HORIZONTAL, spacing );
#else
return gtk_hbox_new( homogenous, spacing );
#endif
}
GtkWidget*
gtr_vbox_new( gboolean homogenous UNUSED, gint spacing )
{
#if GTK_CHECK_VERSION( 3,2,0 )
return gtk_box_new( GTK_ORIENTATION_VERTICAL, spacing );
#else
return gtk_vbox_new( homogenous, spacing );
#endif
}
#define GTR_CHILD_HIDDEN "gtr-child-hidden"
void