git-svn-id: https://svn.webkit.org/repository/webkit/trunk@19826
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2007-02-22 George Staikos <staikos@kde.org>
+
+ Reviewed by Lars.
+
+ Add return values
+
+ * wtf/unicode/qt4/UnicodeQt4.h:
+ (WTF::Unicode::toLower):
+ (WTF::Unicode::toUpper):
+
2007-02-22 Oscar Cwajbaum <public@oscarc.net>
Reviewed by Maciej.
}
for (int i = 0; i < srcLength; ++i)
result[i] = QChar(src[i]).toLower().unicode();
+ return srcLength;
}
inline int toUpper(UChar* str, int strLength, UChar*& destIfNeeded)
}
for (int i = 0; i < srcLength; ++i)
result[i] = QChar(src[i]).toUpper().unicode();
+ return srcLength;
}
inline int toTitleCase(UChar32 c)