~centralelyon2010/inkscape/imagelinks2

« back to all changes in this revision

Viewing changes to src/sp-rect.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:
311
311
}
312
312
 
313
313
void
314
 
sp_rect_set_rx(SPRect *rect, bool set, gdouble value)
 
314
sp_rect_set_rx(SPRect *rect, gboolean set, gdouble value)
315
315
{
316
316
    g_return_if_fail(rect != NULL);
317
317
    g_return_if_fail(SP_IS_RECT(rect));
323
323
}
324
324
 
325
325
void
326
 
sp_rect_set_ry(SPRect *rect, bool set, gdouble value)
 
326
sp_rect_set_ry(SPRect *rect, gboolean set, gdouble value)
327
327
{
328
328
    g_return_if_fail(rect != NULL);
329
329
    g_return_if_fail(SP_IS_RECT(rect));