~centralelyon2010/inkscape/imagelinks2

« back to all changes in this revision

Viewing changes to src/widgets/button.cpp

  • Committer: kidproto
  • Date: 2006-08-25 07:03:19 UTC
  • Revision ID: kidproto@users.sourceforge.net-20060825070319-49nso3fdlwuveifv
peeled back the gboolean code as it hit on some complexity theory principles...
need to rethink and incrementally change gbooleans to bools

Show diffs side-by-side

added added

removed removed

Lines of Context:
204
204
}
205
205
 
206
206
void
207
 
sp_button_toggle_set_down (SPButton *button, bool down)
 
207
sp_button_toggle_set_down (SPButton *button, gboolean down)
208
208
{
209
209
        g_return_if_fail (button->type == SP_BUTTON_TYPE_TOGGLE);
210
210
        g_signal_handlers_block_by_func (G_OBJECT (button), (gpointer)G_CALLBACK (sp_button_perform_action), NULL);