Where did the bus label go?

I decided to build an old project using the latest IPlug2 code.
However, I was discouraged because in the old code, the IBusInfo class declaration had the following:
IBusInfo(ERoute direction, int nchans = 0, const char* label = "")
In the latest version, the label was dropped from the declaration:
IBusInfo(ERoute direction, int nchans = 0)
And how do I label a bus now?

override:
void IPlugProcessor::GetBusName(ERoute direction, int busIdx, int nBuses, WDL_String& str) const

1 Like

Thank you. Everything is working well now.

1 Like