diff options
| author | Jon Phillips <jon@fabricatorz.com> | 2006-08-25 07:03:19 +0000 |
|---|---|---|
| committer | kidproto <kidproto@users.sourceforge.net> | 2006-08-25 07:03:19 +0000 |
| commit | 5d6f51f32ca2356b0d6155015457a83e60b314e8 (patch) | |
| tree | 835131f8041d12103ea82dc6b23917443f61cd42 /src/node-context.h | |
| parent | I peeled back my changes because of some deep error. (diff) | |
| download | inkscape-5d6f51f32ca2356b0d6155015457a83e60b314e8.tar.gz inkscape-5d6f51f32ca2356b0d6155015457a83e60b314e8.zip | |
peeled back the gboolean code as it hit on some complexity theory principles...
need to rethink and incrementally change gbooleans to bools
(bzr r1637)
Diffstat (limited to 'src/node-context.h')
| -rw-r--r-- | src/node-context.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/node-context.h b/src/node-context.h index a4086da2b..a9b4beb07 100644 --- a/src/node-context.h +++ b/src/node-context.h @@ -34,10 +34,10 @@ struct SPNodeContext { Inkscape::NodePath::Path *nodepath; - bool leftalt; - bool rightalt; - bool leftctrl; - bool rightctrl; + gboolean leftalt; + gboolean rightalt; + gboolean leftctrl; + gboolean rightctrl; /// If true, rubberband was cancelled by esc, so the next button release should not deselect. bool rb_escaped; |
