diff options
| author | Johan B. C. Engelen <jbc.engelen@swissonline.ch> | 2014-03-03 21:26:28 +0000 |
|---|---|---|
| committer | Johan B. C. Engelen <j.b.c.engelen@alumnus.utwente.nl> | 2014-03-03 21:26:28 +0000 |
| commit | 2f9102a44d51fdbcbbaaa1c70cbf0a5cb0344ed2 (patch) | |
| tree | c70c3e00420dc1fbb5cf2d35b0fc22aab221ac78 /src | |
| parent | change 0 to NULL for pointers (diff) | |
| download | inkscape-2f9102a44d51fdbcbbaaa1c70cbf0a5cb0344ed2.tar.gz inkscape-2f9102a44d51fdbcbbaaa1c70cbf0a5cb0344ed2.zip | |
no need to use bitfields here. The pre-commit code also looks confusingly similar to initializer value
(bzr r13103)
Diffstat (limited to 'src')
| -rw-r--r-- | src/document-private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/document-private.h b/src/document-private.h index 35f21910c..4560aa28f 100644 --- a/src/document-private.h +++ b/src/document-private.h @@ -61,7 +61,7 @@ struct SPDocumentPrivate { SPDocument::CommitSignal commit_signal; /* Undo/Redo state */ - bool sensitive: true; /* If we save actions to undo stack */ + bool sensitive; /* If we save actions to undo stack */ Inkscape::XML::Event * partial; /* partial undo log when interrupted */ int history_size; GSList * undo; /* Undo stack of reprs */ |
