~centralelyon2010/inkscape/imagelinks2

« back to all changes in this revision

Viewing changes to src/extension/system.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:
104
104
    /* This kinda overkill as most of these are already set, but I want
105
105
       to make sure for this release -- TJG */
106
106
    Inkscape::XML::Node *repr = sp_document_repr_root(doc);
107
 
    bool saved = sp_document_get_undo_sensitive(doc);
 
107
    gboolean saved = sp_document_get_undo_sensitive(doc);
108
108
    sp_document_set_undo_sensitive(doc, FALSE);
109
109
    repr->setAttribute("sodipodi:modified", NULL);
110
110
    sp_document_set_undo_sensitive(doc, saved);