TINSEL: Rename IsConvAndNotMove -> isConvAndNotMove

This commit is contained in:
Einar Johan Trøan Sømåen 2022-05-27 10:29:38 +02:00
parent 8ef52754a1
commit 5ba099f408
No known key found for this signature in database
GPG Key ID: 0DFF2FB496CF9F93
3 changed files with 3 additions and 3 deletions

View File

@ -5616,7 +5616,7 @@ void Dialogs::redraw() {
}
// Noir
bool Dialogs::IsConvAndNotMove() {
bool Dialogs::isConvAndNotMove() {
// TODO: Ensure that the used global is correct
// If this is the right mapping, the variable is reversed in Noir
return isConvWindow() && !_bMoveOnUnHide;

View File

@ -369,7 +369,7 @@ public:
void redraw();
// Noir
bool IsConvAndNotMove();
bool isConvAndNotMove();
bool _noLanguage;
int _glitterIndex;

View File

@ -5830,7 +5830,7 @@ int CallLibraryRoutine(CORO_PARAM, int operand, int32 *pp, const INT_CONTEXT *pi
case HELDOBJECTORTOPIC:
// Noir
if (_vm->_dialogs->IsConvAndNotMove()) {
if (_vm->_dialogs->isConvAndNotMove()) {
pp[0] = HeldObject();
} else {
pp[0] = Topic();