mirror of https://github.com/axmolengine/axmol.git
removed winrt/wp8 code. no longer needed
This commit is contained in:
parent
e5ac916a17
commit
753bc5034a
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue