From 90484cf90a0808e006225d13c582fd76c2bc0535 Mon Sep 17 00:00:00 2001 From: emb <> Date: Thu, 19 Feb 2015 16:29:07 -0600 Subject: [PATCH] Fixed ScrollingList parent class copy constructor execution. --- RetroFE/Source/Graphics/Component/ScrollingList.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/RetroFE/Source/Graphics/Component/ScrollingList.cpp b/RetroFE/Source/Graphics/Component/ScrollingList.cpp index c673cb7..dc7f019 100644 --- a/RetroFE/Source/Graphics/Component/ScrollingList.cpp +++ b/RetroFE/Source/Graphics/Component/ScrollingList.cpp @@ -72,7 +72,8 @@ ScrollingList::ScrollingList(Configuration &c, } ScrollingList::ScrollingList(const ScrollingList ©) - : SpriteList(NULL) + : Component(copy) + , SpriteList(NULL) , TweenEnterTime(0) , FirstSpriteIndex(0) , SelectedSpriteListIndex(0) @@ -116,8 +117,6 @@ ScrollingList::ScrollingList(const ScrollingList ©) TweenPoints->push_back(v); } } - - Component::Component(copy); }