when compiling gives undeclared error, but hovering cursor over dev shows correct declaration of uwdevice*!
HighHandle::Hig hHandle(uwDevic e* dev) : DragHandle(dev)
{
device=dev;
if ( dev->transform )
{
BandPassT* bpt = dynamic_cast<Ba ndPassT*>(devic e->transform);
if ( bpt )
SetFreq(bpt->HighEdge);
}
}
HighHandle::Hig hHandle(uwDevic e* dev) : DragHandle(dev)
{
device=dev;
if ( dev->transform )
{
BandPassT* bpt = dynamic_cast<Ba ndPassT*>(devic e->transform);
if ( bpt )
SetFreq(bpt->HighEdge);
}
}
Comment