From e29bc9972f4f7e934caacb1b138853bacd837abd Mon Sep 17 00:00:00 2001 From: ZappoMan Date: Tue, 21 May 2013 11:34:31 -0700 Subject: [PATCH] code cleanup --- libraries/avatars/src/AvatarData.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libraries/avatars/src/AvatarData.h b/libraries/avatars/src/AvatarData.h index c961ff596a..2c676d6120 100644 --- a/libraries/avatars/src/AvatarData.h +++ b/libraries/avatars/src/AvatarData.h @@ -101,12 +101,12 @@ public: const std::string& chatMessage () const { return _chatMessage; } // related to Voxel Sending strategies - bool getWantResIn() const { return _wantResIn; } - bool getWantColor() const { return _wantColor; } - bool getWantDelta() const { return _wantDelta; } - void setWantResIn(bool wantResIn) { _wantResIn = wantResIn; } - void setWantColor(bool wantColor) { _wantColor = wantColor; } - void setWantDelta(bool wantDelta) { _wantDelta = wantDelta; } + bool getWantResIn() const { return _wantResIn; } + bool getWantColor() const { return _wantColor; } + bool getWantDelta() const { return _wantDelta; } + void setWantResIn(bool wantResIn) { _wantResIn = wantResIn; } + void setWantColor(bool wantColor) { _wantColor = wantColor; } + void setWantDelta(bool wantDelta) { _wantDelta = wantDelta; } protected: // privatize the copy constructor and assignment operator so they cannot be called