Another cut-and-pasteo.

svn path=/trunk/; revision=42188
This commit is contained in:
Guy Harris 2012-04-21 21:16:54 +00:00
parent 8bab40a99e
commit 6f1d74b9b1
1 changed files with 2 additions and 2 deletions

View File

@ -1913,9 +1913,9 @@ GtkWidget * gtk_button_box_new(GtkOrientation orientation)
GtkWidget * gtk_scrollbar_new(GtkOrientation orientation, GtkAdjustment *adjustment)
{
if (orientation == GTK_ORIENTATION_HORIZONTAL){
return gtk_hscrollbar_new(GtkAdjustment *adjustment);
return gtk_hscrollbar_new(adjustment);
}else{
return gtk_vscrollbar_new(GtkAdjustment *adjustment);
return gtk_vscrollbar_new(adjustment);
}
}