From 10b65d7021c4a67a1aa3d88a41114f522485448b Mon Sep 17 00:00:00 2001
From: emb <>
Date: Sun, 15 Feb 2015 23:14:51 -0600
Subject: [PATCH] Renamed TweenSet to TweenSets
---
RetroFE/Source/CMakeLists.txt | 4 ++--
.../Animate/{TweenSet.cpp => TweenSets.cpp} | 14 +++++++-------
.../Animate/{TweenSet.h => TweenSets.h} | 4 ++--
.../Source/Graphics/Component/Component.cpp | 6 +++---
RetroFE/Source/Graphics/Component/Component.h | 8 ++++----
.../Graphics/Component/ScrollingList.cpp | 4 ++--
.../Source/Graphics/Component/ScrollingList.h | 6 +++---
RetroFE/Source/Graphics/PageBuilder.cpp | 18 +++++++++---------
RetroFE/Source/Graphics/PageBuilder.h | 6 +++---
9 files changed, 35 insertions(+), 35 deletions(-)
rename RetroFE/Source/Graphics/Animate/{TweenSet.cpp => TweenSets.cpp} (78%)
rename RetroFE/Source/Graphics/Animate/{TweenSet.h => TweenSets.h} (94%)
diff --git a/RetroFE/Source/CMakeLists.txt b/RetroFE/Source/CMakeLists.txt
index c1be59a..6c35c18 100644
--- a/RetroFE/Source/CMakeLists.txt
+++ b/RetroFE/Source/CMakeLists.txt
@@ -86,7 +86,7 @@ set(RETROFE_HEADERS
"${RETROFE_DIR}/Source/Execute/Launcher.h"
"${RETROFE_DIR}/Source/Graphics/Animate/Tween.h"
"${RETROFE_DIR}/Source/Graphics/Animate/TweenTypes.h"
- "${RETROFE_DIR}/Source/Graphics/Animate/TweenSet.h"
+ "${RETROFE_DIR}/Source/Graphics/Animate/TweenSets.h"
"${RETROFE_DIR}/Source/Graphics/ComponentItemBinding.h"
"${RETROFE_DIR}/Source/Graphics/Component/Container.h"
"${RETROFE_DIR}/Source/Graphics/Component/Component.h"
@@ -133,7 +133,7 @@ set(RETROFE_SOURCES
"${RETROFE_DIR}/Source/Graphics/Page.cpp"
"${RETROFE_DIR}/Source/Graphics/ViewInfo.cpp"
"${RETROFE_DIR}/Source/Graphics/Animate/Tween.cpp"
- "${RETROFE_DIR}/Source/Graphics/Animate/TweenSet.cpp"
+ "${RETROFE_DIR}/Source/Graphics/Animate/TweenSets.cpp"
"${RETROFE_DIR}/Source/Graphics/ComponentItemBindingBuilder.cpp"
"${RETROFE_DIR}/Source/Graphics/ComponentItemBinding.cpp"
"${RETROFE_DIR}/Source/Graphics/Component/Container.cpp"
diff --git a/RetroFE/Source/Graphics/Animate/TweenSet.cpp b/RetroFE/Source/Graphics/Animate/TweenSets.cpp
similarity index 78%
rename from RetroFE/Source/Graphics/Animate/TweenSet.cpp
rename to RetroFE/Source/Graphics/Animate/TweenSets.cpp
index 320b07a..a964e7c 100644
--- a/RetroFE/Source/Graphics/Animate/TweenSet.cpp
+++ b/RetroFE/Source/Graphics/Animate/TweenSets.cpp
@@ -14,14 +14,14 @@
* along with RetroFE. If not, see .
*/
-#include "TweenSet.h"
+#include "TweenSets.h"
-TweenSet::~TweenSet()
+TweenSets::~TweenSets()
{
DestroyTweens();
}
-void TweenSet::DestroyTweens()
+void TweenSets::DestroyTweens()
{
std::map >::iterator it = TweenMap.begin();
@@ -40,22 +40,22 @@ void TweenSet::DestroyTweens()
}
}
-TweenSet::TweenAttributes *TweenSet::GetTween(std::string tween)
+TweenSets::TweenAttributes *TweenSets::GetTween(std::string tween)
{
return GetTween(tween, -1);
}
-TweenSet::TweenAttributes *TweenSet::GetTween(std::string tween, int index)
+TweenSets::TweenAttributes *TweenSets::GetTween(std::string tween, int index)
{
return FindTween(TweenMap[tween], index);
}
-void TweenSet::SetTween(std::string tween, int index, TweenAttributes *set)
+void TweenSets::SetTween(std::string tween, int index, TweenAttributes *set)
{
TweenMap[tween][index] = set;
}
-TweenSet::TweenAttributes *TweenSet::FindTween(std::map &tweens, int index)
+TweenSets::TweenAttributes *TweenSets::FindTween(std::map &tweens, int index)
{
if(tweens.find(index) == tweens.end())
{
diff --git a/RetroFE/Source/Graphics/Animate/TweenSet.h b/RetroFE/Source/Graphics/Animate/TweenSets.h
similarity index 94%
rename from RetroFE/Source/Graphics/Animate/TweenSet.h
rename to RetroFE/Source/Graphics/Animate/TweenSets.h
index 707ba06..c28acc0 100644
--- a/RetroFE/Source/Graphics/Animate/TweenSet.h
+++ b/RetroFE/Source/Graphics/Animate/TweenSets.h
@@ -20,10 +20,10 @@
#include
#include