From 13d40682c5f4bff902e2503b6a8eb34e7af584c5 Mon Sep 17 00:00:00 2001 From: AJ Kelly Date: Sun, 15 May 2011 14:02:39 -0500 Subject: [PATCH] small cleanup --- src/OptionsCursor.cpp | 2 +- src/OptionsCursor.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/OptionsCursor.cpp b/src/OptionsCursor.cpp index a18ce96750..b1a69a8c14 100644 --- a/src/OptionsCursor.cpp +++ b/src/OptionsCursor.cpp @@ -24,7 +24,7 @@ OptionsCursor::OptionsCursor( const OptionsCursor &cpy ): m_iOriginalCanGoLeftX( cpy.m_iOriginalCanGoLeftX ), m_iOriginalCanGoRightX( cpy.m_iOriginalCanGoRightX ) { - /* Re-add children, or m_SubActors will point to cpy's children and not our own. */ + // Re-add children, or m_SubActors will point to cpy's children and not our own. m_SubActors.clear(); this->AddChild( m_sprMiddle ); this->AddChild( m_sprLeft ); diff --git a/src/OptionsCursor.h b/src/OptionsCursor.h index cf27850d4e..9f0652fe24 100644 --- a/src/OptionsCursor.h +++ b/src/OptionsCursor.h @@ -28,11 +28,11 @@ protected: AutoActor m_sprMiddle; AutoActor m_sprLeft; AutoActor m_sprRight; - + AutoActor m_sprCanGoLeft; AutoActor m_sprCanGoRight; - // save the metrics-set X because it gets oblitterated on a call to SetBarWidth + // save the metrics-set X because it gets obliterated on a call to SetBarWidth int m_iOriginalLeftX; int m_iOriginalRightX; int m_iOriginalCanGoLeftX;