warzone2100: remove leftover patch

This commit is contained in:
Enno Boland 2017-04-27 14:34:16 +02:00
parent 2c5ce048a9
commit a3668a1422

View file

@ -1,23 +0,0 @@
editbox.cpp:127:9: error: ambiguous overload for 'operator==' (operand types are 'QChar' and 'char')
if (ch == '\0')
--- lib/widget/editbox.cpp.orig
+++ lib/widget/editbox.cpp
@@ -124,7 +124,7 @@ void W_EDITBOX::initialise()
/* Insert a character into a text buffer */
void W_EDITBOX::insertChar(QChar ch)
{
- if (ch == '\0')
+ if (ch == QChar('\0'))
{
return;
}
@@ -150,7 +150,7 @@ void W_EDITBOX::insertChar(QChar ch)
/* Put a character into a text buffer overwriting any text under the cursor */
void W_EDITBOX::overwriteChar(QChar ch)
{
- if (ch == '\0')
+ if (ch == QChar('\0'))
{
return;
}