summaryrefslogtreecommitdiffstats
path: root/src/node-context.h
diff options
context:
space:
mode:
authorJon Phillips <jon@fabricatorz.com>2006-08-23 07:08:06 +0000
committerkidproto <kidproto@users.sourceforge.net>2006-08-23 07:08:06 +0000
commit10880dbfba9afd5a963f5bb36fe9a3707c1c35a1 (patch)
tree7a73cfffbb81131a0dfb9c6d799325e363615e8a /src/node-context.h
parentUpdated his name and copyright info... (diff)
downloadinkscape-10880dbfba9afd5a963f5bb36fe9a3707c1c35a1.tar.gz
inkscape-10880dbfba9afd5a963f5bb36fe9a3707c1c35a1.zip
Ok, committed msgloan's patch to convert gbooleans to bools thus completing
one major janitorial task we identified.... (bzr r1633)
Diffstat (limited to 'src/node-context.h')
-rw-r--r--src/node-context.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/node-context.h b/src/node-context.h
index a9b4beb07..a4086da2b 100644
--- a/src/node-context.h
+++ b/src/node-context.h
@@ -34,10 +34,10 @@ struct SPNodeContext {
Inkscape::NodePath::Path *nodepath;
- gboolean leftalt;
- gboolean rightalt;
- gboolean leftctrl;
- gboolean rightctrl;
+ bool leftalt;
+ bool rightalt;
+ bool leftctrl;
+ bool rightctrl;
/// If true, rubberband was cancelled by esc, so the next button release should not deselect.
bool rb_escaped;