1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-11 17:13:37 +02:00
This commit is contained in:
Paul Licameli
2020-02-02 16:52:09 -05:00
parent c293a8fc18
commit 646afe9559

View File

@@ -114,17 +114,18 @@ Then in MyTable.cpp,
void MyTable::InitUserData(void *pUserData)
{
// Remember pData
auto pData = static_cast<MyData*>(pUserData);
}
void MyTable::InitMenu(Menu *pMenu)
{
// Remember pData, enable or disable menu items
// enable or disable menu items
}
void MyTable::DestroyMenu()
{
// Do cleanup
// Do cleanup
}
BEGIN_POPUP_MENU(MyTable)