mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-02 00:32:45 +03:00
chore(ui): rename CSimpleEditBox::DeleteSubstring param a4 to userInput
This commit is contained in:
parent
c2e1bd19b8
commit
24027c3a98
@ -177,7 +177,7 @@ void CSimpleEditBox::DeleteHighlight(int32_t a2) {
|
|||||||
// TODO
|
// TODO
|
||||||
}
|
}
|
||||||
|
|
||||||
void CSimpleEditBox::DeleteSubstring(int32_t left, int32_t right, int32_t a4) {
|
void CSimpleEditBox::DeleteSubstring(int32_t left, int32_t right, int32_t userInput) {
|
||||||
auto v5 = this->m_textInfo;
|
auto v5 = this->m_textInfo;
|
||||||
auto v6 = left;
|
auto v6 = left;
|
||||||
|
|
||||||
@ -292,7 +292,7 @@ LABEL_12:
|
|||||||
|
|
||||||
this->m_dirtyFlags |= 0x1 | 0x4;
|
this->m_dirtyFlags |= 0x1 | 0x4;
|
||||||
|
|
||||||
if (!a4) {
|
if (!userInput) {
|
||||||
this->m_dirtyFlags |= 0x8;
|
this->m_dirtyFlags |= 0x8;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -98,7 +98,7 @@ class CSimpleEditBox : public CSimpleFrame, CSimpleFontedFrame {
|
|||||||
void DeleteBackward(int32_t a2);
|
void DeleteBackward(int32_t a2);
|
||||||
void DeleteForward(int32_t a2);
|
void DeleteForward(int32_t a2);
|
||||||
void DeleteHighlight(int32_t a2);
|
void DeleteHighlight(int32_t a2);
|
||||||
void DeleteSubstring(int32_t left, int32_t right, int32_t a4);
|
void DeleteSubstring(int32_t left, int32_t right, int32_t userInput);
|
||||||
void DispatchAction(int32_t action);
|
void DispatchAction(int32_t action);
|
||||||
int32_t GetNumToLen(int32_t offset, int32_t amount, bool a4);
|
int32_t GetNumToLen(int32_t offset, int32_t amount, bool a4);
|
||||||
void GrowText(int32_t size);
|
void GrowText(int32_t size);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user