From 519157aeab7094e6aadf416c3084d7dc766c189c Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Wed, 12 Jul 2006 09:50:45 +0000 Subject: [PATCH] From Vincent Vivanloc, Removed commas from end of enum lists, and removed semi-colon from end of namespace. --- include/osgGA/GUIEventAdapter | 2 +- include/osgGA/GUIEventHandlerVisitor | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/osgGA/GUIEventAdapter b/include/osgGA/GUIEventAdapter index fe6a337f6..8efc539f1 100644 --- a/include/osgGA/GUIEventAdapter +++ b/include/osgGA/GUIEventAdapter @@ -204,7 +204,7 @@ public: KEY_Super_L = 0xFFEB, /* Left super */ KEY_Super_R = 0xFFEC, /* Right super */ KEY_Hyper_L = 0xFFED, /* Left hyper */ - KEY_Hyper_R = 0xFFEE, /* Right hyper */ + KEY_Hyper_R = 0xFFEE /* Right hyper */ }; diff --git a/include/osgGA/GUIEventHandlerVisitor b/include/osgGA/GUIEventHandlerVisitor index 6088439f8..2fd4f1f28 100644 --- a/include/osgGA/GUIEventHandlerVisitor +++ b/include/osgGA/GUIEventHandlerVisitor @@ -65,6 +65,6 @@ class OSGGA_EXPORT GUIEventHandlerVisitor }; -}; +} #endif