* 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
+2 -2
View File
@@ -2217,11 +2217,11 @@ BWindow::GetSupportedSuites(BMessage *data)
if (data == NULL)
return B_BAD_VALUE;
status_t status = data->AddString("Suites", "suite/vnd.Be-window");
status_t status = data->AddString("suites", "suite/vnd.Be-window");
if (status == B_OK) {
BPropertyInfo propertyInfo(sWindowPropInfo, sWindowValueInfo);
status = data->AddFlat("message", &propertyInfo);
status = data->AddFlat("messages", &propertyInfo);
if (status == B_OK)
status = BLooper::GetSupportedSuites(data);
}