TINSEL: Rename IsConvAndNotMove -> isConvAndNotMove

This commit is contained in:
Einar Johan Trøan Sømåen 2022-05-27 10:29:38 +02:00 committed by Filippos Karapetis
parent 50eb3bb542
commit 5b2a8fea37
3 changed files with 3 additions and 3 deletions

View File

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

View File

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

View File

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