Fixed a crash on exit (Attached views are deleted automatically), finished some missing stuff, corrected some issues.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11609 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -100,8 +100,6 @@ BChannelSlider::~BChannelSlider()
|
||||
delete fLeftKnob;
|
||||
delete fMidKnob;
|
||||
delete fRightKnob;
|
||||
delete fBacking;
|
||||
delete fBackingView;
|
||||
delete fInitialValues;
|
||||
}
|
||||
|
||||
@@ -373,8 +371,12 @@ BHandler *
|
||||
BChannelSlider::ResolveSpecifier(BMessage *msg, int32 index, BMessage *specifier,
|
||||
int32 form, const char *property)
|
||||
{
|
||||
// TODO: Implement
|
||||
return NULL;
|
||||
BHandler *target = this;
|
||||
BPropertyInfo propertyInfo(sPropertyInfo);
|
||||
if (propertyInfo.FindMatch(msg, index, specifier, form, property) < B_OK)
|
||||
target = BChannelControl::ResolveSpecifier(msg, index, specifier, form, property);
|
||||
|
||||
return target;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user