Magnify: fix scripting

Change-Id: If7f283d35c4af894c0db58ea015b4f3ea278ecdd
Reviewed-on: https://review.haiku-os.org/c/haiku/+/2939
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
This commit is contained in:
X512 2020-06-22 00:50:09 +09:00 committed by waddlesplash
parent 176d0e1041
commit 1e4192fc86

View File

@ -356,7 +356,7 @@ TWindow::GetSupportedSuites(BMessage* msg)
BPropertyInfo propertyInfo(sProperties);
msg->AddFlat("messages", &propertyInfo);
return BHandler::GetSupportedSuites(msg);
return BWindow::GetSupportedSuites(msg);
}
@ -368,7 +368,7 @@ TWindow::ResolveSpecifier(BMessage* msg, int32 index, BMessage* specifier,
if (propertyInfo.FindMatch(msg, index, specifier, what, property) >= 0)
return this;
return BHandler::ResolveSpecifier(msg, index, specifier, what, property);
return BWindow::ResolveSpecifier(msg, index, specifier, what, property);
}