~centralelyon2010/inkscape/imagelinks2

« back to all changes in this revision

Viewing changes to src/path-chemistry.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:
34
34
#include "desktop-handles.h"
35
35
 
36
36
/* Helper functions for sp_selected_path_to_curves */
37
 
static void sp_selected_path_to_curves0(bool do_document_done, guint32 text_grouping_policy);
 
37
static void sp_selected_path_to_curves0(gboolean do_document_done, guint32 text_grouping_policy);
38
38
static Inkscape::XML::Node *sp_selected_item_to_curved_repr(SPItem *item, guint32 text_grouping_policy);
39
39
enum {
40
40
    /* Not used yet. This is the placeholder of Lauris's idea. */
245
245
}
246
246
 
247
247
static void
248
 
sp_selected_path_to_curves0(bool interactive, guint32 text_grouping_policy)
 
248
sp_selected_path_to_curves0(gboolean interactive, guint32 text_grouping_policy)
249
249
{
250
250
    SPDesktop *desktop = SP_ACTIVE_DESKTOP;
251
251