removed winrt/wp8 code. no longer needed

This commit is contained in:
Dale Stammen 2014-10-23 06:59:09 -07:00
parent e5ac916a17
commit 753bc5034a
1 changed files with 0 additions and 10 deletions

View File

@ -195,7 +195,6 @@ void TextFieldTTF::insertText(const char * text, size_t len)
if (len > 0) if (len > 0)
{ {
#if (CC_TARGET_PLATFORM != CC_PLATFORM_WP8 && CC_TARGET_PLATFORM != CC_PLATFORM_WINRT)
if (_delegate && _delegate->onTextFieldInsertText(this, insert.c_str(), len)) if (_delegate && _delegate->onTextFieldInsertText(this, insert.c_str(), len))
{ {
// delegate doesn't want to insert text // delegate doesn't want to insert text
@ -206,15 +205,6 @@ void TextFieldTTF::insertText(const char * text, size_t len)
std::string sText(_inputText); std::string sText(_inputText);
sText.append(insert); sText.append(insert);
setString(sText); setString(sText);
#else
size_t existlen = _inputText.length();
if (_delegate && _delegate->onTextFieldInsertText(this, insert.c_str() + existlen, len - existlen))
{
// delegate doesn't want to insert text
return;
}
setString(insert);
#endif
} }
if ((int)insert.npos == pos) { if ((int)insert.npos == pos) {