From: Axel S. <as...@us...> - 2005-04-08 09:20:43
|
Update of /cvsroot/gtk2hs/gtk2hs/gtk/Graphics/UI/Gtk/MenuComboToolbar In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5617/gtk/Graphics/UI/Gtk/MenuComboToolbar Modified Files: ComboBox.chs.pp Log Message: Corrected some #ifdef to make it compile with Gtk 2.4 Index: ComboBox.chs.pp =================================================================== RCS file: /cvsroot/gtk2hs/gtk2hs/gtk/Graphics/UI/Gtk/MenuComboToolbar/ComboBox.chs.pp,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- ComboBox.chs.pp 7 Apr 2005 00:34:41 -0000 1.6 +++ ComboBox.chs.pp 8 Apr 2005 09:20:26 -0000 1.7 @@ -96,11 +96,11 @@ comboBoxGetRowSpanColumn, comboBoxGetColumnSpanColumn, comboBoxGetActiveText, + comboBoxSetAddTearoffs, + comboBoxGetAddTearoffs, comboBoxSetFocusOnClick, comboBoxGetFocusOnClick, - comboBoxSetAddTearoffs, #endif - comboBoxGetAddTearoffs, -- * Properties #if GTK_CHECK_VERSION(2,6,0) @@ -395,7 +395,6 @@ {# call gtk_combo_box_set_add_tearoffs #} (toComboBox self) (fromBool addTearoffs) -#endif -- | Gets the current value of the :add-tearoffs property. -- @@ -405,7 +404,6 @@ {# call gtk_combo_box_get_add_tearoffs #} (toComboBox self) -#if GTK_CHECK_VERSION(2,6,0) -- | Sets whether the combo box will grab focus when it is clicked with the -- mouse. Making mouse clicks not grab focus is useful in places like toolbars -- where you don't want the keyboard focus removed from the main area of the |