From e06c4056ae9e30f66f9c44659b57f5d8d88fae97 Mon Sep 17 00:00:00 2001 From: badlogic Date: Thu, 6 Sep 2018 16:03:41 +0200 Subject: [PATCH] [cpp] Fixed name spacing. --- spine-cpp/spine-cpp/src/spine/Event.cpp | 8 ++++---- spine-cpp/spine-cpp/src/spine/EventData.cpp | 12 ++++++------ 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/spine-cpp/spine-cpp/src/spine/Event.cpp b/spine-cpp/spine-cpp/src/spine/Event.cpp index 9fb9a6e64..e397b4e68 100644 --- a/spine-cpp/spine-cpp/src/spine/Event.cpp +++ b/spine-cpp/spine-cpp/src/spine/Event.cpp @@ -79,18 +79,18 @@ void spine::Event::setStringValue(const spine::String &inValue) { } -float Event::getVolume() { +float spine::Event::getVolume() { return _volume; } -void Event::setVolume(float inValue) { +void spine::Event::setVolume(float inValue) { _volume = inValue; } -float Event::getBalance() { +float spine::Event::getBalance() { return _balance; } -void Event::setBalance(float inValue) { +void spine::Event::setBalance(float inValue) { _balance = inValue; } diff --git a/spine-cpp/spine-cpp/src/spine/EventData.cpp b/spine-cpp/spine-cpp/src/spine/EventData.cpp index 9119f0eb4..489f185b9 100644 --- a/spine-cpp/spine-cpp/src/spine/EventData.cpp +++ b/spine-cpp/spine-cpp/src/spine/EventData.cpp @@ -76,27 +76,27 @@ void spine::EventData::setStringValue(const spine::String &inValue) { this->_stringValue = inValue; } -const String &EventData::getAudioPath() { +const spine::String &spine::EventData::getAudioPath() { return _audioPath; } -void EventData::setAudioPath(const String &inValue) { +void spine::EventData::setAudioPath(const spine::String &inValue) { _audioPath = inValue; } -float EventData::getVolume() { +float spine::EventData::getVolume() { return _volume; } -void EventData::setVolume(float inValue) { +void spine::EventData::setVolume(float inValue) { _volume = inValue; } -float EventData::getBalance() { +float spine::EventData::getBalance() { return _balance; } -void EventData::setBalance(float inValue) { +void spine::EventData::setBalance(float inValue) { _balance = inValue; }