more nonsense
This commit is contained in:
@ -1,12 +1,10 @@
|
||||
// Fill out your copyright notice in the Description page of Project Settings.
|
||||
|
||||
|
||||
#include "ModeInputTextBox.h"
|
||||
|
||||
void UModeInputTextBox::HandleOnTextChanged(const FText& inText) {
|
||||
|
||||
auto & s = inText.ToString();
|
||||
auto lastChar = s.LeftChop(1);
|
||||
lastChar.ToUpperInline();
|
||||
SetText(FText::FromString(lastChar));
|
||||
}
|
||||
void UModeInputTextBox::HandleOnTextChanged(FText const & inText) {
|
||||
auto & s = inText.ToString();
|
||||
auto lastChar = s.LeftChop(1);
|
||||
lastChar.ToUpperInline();
|
||||
SetText(FText::FromString(lastChar));
|
||||
}
|
||||
|
Reference in New Issue
Block a user