replace tab to spaces. Fix compile error of UIRichTextTest.cpp in windows visual studio vs2013.

This commit is contained in:
AppleJDay 2014-08-01 17:37:30 +08:00
parent 2239fafade
commit b736202a55
2 changed files with 13 additions and 13 deletions

View File

@ -62,18 +62,18 @@ public:
inline float getScrollX() { return _scrollX; };
inline float getScrollY() { return _scrollY; };
inline void setCursorPosition(float x, float y) {
_x = x;
_y = y;
_prevPoint = _point;
_point.x = x;
_point.y = y;
if (!_startPointCaptured)
{
_startPoint = _point;
_startPointCaptured = true;
}
}
inline void setCursorPosition(float x, float y) {
_x = x;
_y = y;
_prevPoint = _point;
_point.x = x;
_point.y = y;
if (!_startPointCaptured)
{
_startPoint = _point;
_startPointCaptured = true;
}
}
inline void setMouseButton(int button) { _mouseButton = button; };
inline int getMouseButton() { return _mouseButton; };

View File

@ -1,4 +1,4 @@

#include "UIRichTextTest.h"
#include "cocostudio/CCArmatureDataManager.h"