address compiler warnings
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10076 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
3d994e7550
commit
fa96039f9c
@ -105,6 +105,7 @@ status_t
|
||||
BMediaFile::SetTo(const entry_ref *ref)
|
||||
{
|
||||
debugger("BMediaFile::SetTo not implemented");
|
||||
return B_OK;
|
||||
}
|
||||
|
||||
|
||||
@ -112,6 +113,7 @@ status_t
|
||||
BMediaFile::SetTo(BDataIO *destination)
|
||||
{
|
||||
debugger("BMediaFile::SetTo not implemented");
|
||||
return B_OK;
|
||||
}
|
||||
|
||||
|
||||
|
@ -38,7 +38,7 @@ BMediaFiles::RewindTypes()
|
||||
server_rewindtypes_reply reply;
|
||||
|
||||
for(int32 i = 0; i < m_types.CountItems(); i++)
|
||||
delete m_types.ItemAt(i);
|
||||
delete (BString*)m_types.ItemAt(i);
|
||||
|
||||
m_types.MakeEmpty();
|
||||
|
||||
@ -98,7 +98,7 @@ BMediaFiles::RewindRefs(const char *type)
|
||||
server_rewindrefs_reply reply;
|
||||
|
||||
for(int32 i = 0; i < m_items.CountItems(); i++)
|
||||
delete m_items.ItemAt(i);
|
||||
delete (BString*)m_items.ItemAt(i);
|
||||
|
||||
m_items.MakeEmpty();
|
||||
|
||||
|
@ -546,6 +546,9 @@ BMediaTrack::Web()
|
||||
status_t
|
||||
BMediaTrack::GetParameterWeb(BParameterWeb** outWeb)
|
||||
{
|
||||
UNIMPLEMENTED();
|
||||
|
||||
return B_OK;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user