mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
[ion/utf8_helper] Signedness and capitalization
Change-Id: I3451a206fbd45a490eea0115621c07abb868344a
This commit is contained in:
committed by
Émilie Feral
parent
bd068312d9
commit
28d18dd6a5
@@ -33,7 +33,7 @@ const char * Clipboard::storedText() {
|
||||
UTF8Helper::TextPair("\x12\x13", "\x12\x11\x13"),
|
||||
};
|
||||
|
||||
UTF8Helper::tryAndReplacePatternsInStringByPatterns(m_textBuffer, TextField::maxBufferSize(), (UTF8Helper::TextPair *) &textPairs, numberOfPairs, true);
|
||||
UTF8Helper::TryAndReplacePatternsInStringByPatterns(m_textBuffer, TextField::maxBufferSize(), (UTF8Helper::TextPair *) &textPairs, numberOfPairs, true);
|
||||
return m_textBuffer;
|
||||
}
|
||||
|
||||
@@ -42,5 +42,5 @@ void Clipboard::reset() {
|
||||
}
|
||||
|
||||
void Clipboard::replaceCharForPython(bool entersPythonApp) {
|
||||
UTF8Helper::tryAndReplacePatternsInStringByPatterns((char *)m_textBuffer, TextField::maxBufferSize(), (UTF8Helper::TextPair *)&PythonTextPairs, NumberOfPythonTextPairs, entersPythonApp);
|
||||
}
|
||||
UTF8Helper::TryAndReplacePatternsInStringByPatterns((char *)m_textBuffer, TextField::maxBufferSize(), (UTF8Helper::TextPair *)&PythonTextPairs, NumberOfPythonTextPairs, entersPythonApp);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user