Use gtk_spin_button_get_value_as_int instead of gtk_spin_button_get_value since

it both is more correct and is available on gtk1 under the same name.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21284 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2006-11-26 21:21:27 +00:00
parent 4d27dbd5c9
commit 38e9890c05
1 changed files with 2 additions and 2 deletions

View File

@ -545,8 +545,8 @@ void prButton( GtkButton * button,gpointer user_data )
#ifdef USE_ASS
gtkASS.enabled=gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBUseASS ) );
gtkASS.use_margins=gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( CBASSUseMargins ) );
gtkASS.top_margin=gtk_spin_button_get_value( GTK_SPIN_BUTTON( SBASSTopMargin ) );
gtkASS.bottom_margin=gtk_spin_button_get_value( GTK_SPIN_BUTTON( SBASSBottomMargin ) );
gtkASS.top_margin=gtk_spin_button_get_value_as_int( GTK_SPIN_BUTTON( SBASSTopMargin ) );
gtkASS.bottom_margin=gtk_spin_button_get_value_as_int( GTK_SPIN_BUTTON( SBASSBottomMargin ) );
#endif
sub_delay=HSSubDelayadj->value;
sub_fps=HSSubFPSadj->value;