Skip to content

Commit

Permalink
Fix typo from refactor (#802)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamkewley committed Nov 16, 2023
1 parent 8512dc4 commit a178139
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

namespace osc { class MeshImporterLayer; }
namespace osc { class MeshImporterUILayer; }

namespace osc
{
Expand All @@ -15,12 +15,12 @@ namespace osc
public:
virtual ~MeshImporterUILayerHost() noexcept = default;

void requestPop(MeshImporterLayer& layer)
void requestPop(MeshImporterUILayer& layer)
{
implRequestPop(layer);
}

private:
virtual void implRequestPop(MeshImporterLayer&) = 0;
virtual void implRequestPop(MeshImporterUILayer&) = 0;
};
}

0 comments on commit a178139

Please sign in to comment.