* fixed some more GetSupportedSuites implementations
* fixed some local variables names * fixed the case of some message attribute names git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@17734 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -911,10 +911,10 @@ BApplication::GetSupportedSuites(BMessage *data)
|
||||
if (!data)
|
||||
return B_BAD_VALUE;
|
||||
|
||||
status_t status = data->AddString("Suites", "suite/vnd.Be-application");
|
||||
status_t status = data->AddString("suites", "suite/vnd.Be-application");
|
||||
if (status == B_OK) {
|
||||
BPropertyInfo PropertyInfo(sPropertyInfo);
|
||||
status = data->AddFlat("message", &PropertyInfo);
|
||||
BPropertyInfo propertyInfo(sPropertyInfo);
|
||||
status = data->AddFlat("messages", &propertyInfo);
|
||||
if (status == B_OK)
|
||||
status = BHandler::GetSupportedSuites(data);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user