summaryrefslogtreecommitdiff
path: root/wx+/graph.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'wx+/graph.cpp')
-rw-r--r--wx+/graph.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/wx+/graph.cpp b/wx+/graph.cpp
index d76e4d41..601c4913 100644
--- a/wx+/graph.cpp
+++ b/wx+/graph.cpp
@@ -453,7 +453,7 @@ void Graph2D::onPaintEvent(wxPaintEvent& event)
void Graph2D::OnMouseLeftDown(wxMouseEvent& event)
{
- activeSel = zen::make_unique<MouseSelection>(*this, event.GetPosition());
+ activeSel = std::make_unique<MouseSelection>(*this, event.GetPosition());
if (!event.ControlDown())
oldSel.clear();
bgstack15