Implemeted some methods for BBitmaps which accepts views, got rid of "NOT_IMPLEMENTED". Fixed a warning in ListView.cpp

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11461 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stefano Ceccherini
2005-02-23 11:23:41 +00:00
parent 94e3125a61
commit a84dde4cde
2 changed files with 24 additions and 19 deletions
+6 -3
View File
@@ -1,5 +1,5 @@
//------------------------------------------------------------------------------
// Copyright (c) 2001-2002, OpenBeOS
// Copyright (c) 2001-2005, Haiku, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
@@ -932,10 +932,13 @@ BHandler *BListView::ResolveSpecifier(BMessage *msg, int32 index,
return this;
}
//------------------------------------------------------------------------------
status_t BListView::GetSupportedSuites( BMessage *data )
status_t
BListView::GetSupportedSuites(BMessage *data )
{
BPropertyInfo propertyInfo(prop_list);
data->AddString("suites", "suite/vnd.Be-list-view");
data->AddFlat("messages", &BPropertyInfo(prop_list));
data->AddFlat("messages", &propertyInfo);
return BView::GetSupportedSuites(data);
}