Skip to content

Commit

Permalink
Minor cleanup to NavigatorPanel.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
adamkewley committed Oct 11, 2024
1 parent fd37e5c commit 314cd29
Showing 1 changed file with 5 additions and 25 deletions.
30 changes: 5 additions & 25 deletions src/OpenSimCreator/UI/Shared/NavigatorPanel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -335,28 +335,8 @@ osc::NavigatorPanel::NavigatorPanel(
osc::NavigatorPanel::NavigatorPanel(NavigatorPanel&&) noexcept = default;
osc::NavigatorPanel& osc::NavigatorPanel::operator=(NavigatorPanel&&) noexcept = default;
osc::NavigatorPanel::~NavigatorPanel() noexcept = default;

CStringView osc::NavigatorPanel::impl_get_name() const
{
return m_Impl->name();
}

bool osc::NavigatorPanel::impl_is_open() const
{
return m_Impl->is_open();
}

void osc::NavigatorPanel::impl_open()
{
m_Impl->open();
}

void osc::NavigatorPanel::impl_close()
{
m_Impl->close();
}

void osc::NavigatorPanel::impl_on_draw()
{
m_Impl->on_draw();
}
CStringView osc::NavigatorPanel::impl_get_name() const { return m_Impl->name(); }
bool osc::NavigatorPanel::impl_is_open() const { return m_Impl->is_open(); }
void osc::NavigatorPanel::impl_open() { m_Impl->open(); }
void osc::NavigatorPanel::impl_close() { m_Impl->close(); }
void osc::NavigatorPanel::impl_on_draw() { m_Impl->on_draw(); }

0 comments on commit 314cd29

Please sign in to comment.