From 1e4192fc86b265c24c2a13054dacbbc5b0cba42c Mon Sep 17 00:00:00 2001 From: X512 Date: Mon, 22 Jun 2020 00:50:09 +0900 Subject: [PATCH] Magnify: fix scripting Change-Id: If7f283d35c4af894c0db58ea015b4f3ea278ecdd Reviewed-on: https://review.haiku-os.org/c/haiku/+/2939 Reviewed-by: waddlesplash --- src/apps/magnify/Magnify.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apps/magnify/Magnify.cpp b/src/apps/magnify/Magnify.cpp index f561ef1b39..89b94fcca1 100644 --- a/src/apps/magnify/Magnify.cpp +++ b/src/apps/magnify/Magnify.cpp @@ -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); }