Magnify: fix scripting

Change-Id: If7f283d35c4af894c0db58ea015b4f3ea278ecdd
Reviewed-on: https://review.haiku-os.org/c/haiku/+/2939
Reviewed-by: waddlesplash <[email protected]>
This commit is contained in:
X512
2020-06-21 18:08:07 +00:00
committed by waddlesplash
parent 176d0e1041
commit 1e4192fc86
+2 -2
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);
}