* 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:
Jérôme Duval
2006-06-06 12:35:27 +00:00
parent a60f5e9c2e
commit f4fc3d626a
9 changed files with 85 additions and 59 deletions
+3 -3
View File
@@ -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);
}