1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-07 04:01:54 +01:00

Remove GetLink(ed) in TrackPanel resizing code

This commit is contained in:
Paul Licameli
2017-01-11 14:00:31 -05:00
parent d2a18f01e3
commit ecc869bdbe
3 changed files with 37 additions and 40 deletions

View File

@@ -28,7 +28,7 @@ std::vector<UIHandlePtr> TrackPanelResizerCell::HitTest
auto pTrack = mpTrack.lock();
if (pTrack) {
auto result = std::make_shared<TrackPanelResizeHandle>(
pTrack, st.state.m_y, pProject );
pTrack, st.state.m_y );
result = AssignUIHandlePtr(mResizeHandle, result);
results.push_back(result);
}