Migrate strings for all commands

FossilOrigin-Name: 11889bf242c1346514823c710dcf369bebc7339b24399f2c6369b146c644996c
This commit is contained in:
Jonathan Schleifer 2025-03-07 22:30:15 +00:00
parent 63a6c72954
commit 039efe612d
7 changed files with 89 additions and 93 deletions

View file

@ -128,9 +128,9 @@ bindkey(OFString *key, OFString *action)
COMMANDN(bind, bindkey, ARG_2STR)
void
saycommand(const char *init) // turns input to the command line on or off
saycommand(OFString *init) // turns input to the command line on or off
{
saycommandon = (init != NULL);
saycommandon = (init != nil);
if (saycommandon)
SDL_StartTextInput();
else
@ -139,10 +139,10 @@ saycommand(const char *init) // turns input to the command line on or off
if (!editmode)
Cube.sharedInstance.repeatsKeys = saycommandon;
if (!init)
init = "";
if (init == nil)
init = @"";
commandbuf = [[OFMutableString alloc] initWithUTF8String:init];
commandbuf = [init mutableCopy];
}
COMMAND(saycommand, ARG_VARI)
@ -255,7 +255,7 @@ keypress(int code, bool isdown, int cooked)
commandbuf.UTF8String));
execute(copy.get(), true);
} else
toserver(commandbuf.UTF8String);
toserver(commandbuf);
}
saycommand(NULL);
} else if (code == SDLK_ESCAPE) {