From: Mikko Rasa Date: Sat, 19 Mar 2022 07:54:49 +0000 (+0200) Subject: Fix a copy-paste error X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=commitdiff_plain;h=03937c4f58465cb0fe7492feb17f19e81eee6abb Fix a copy-paste error --- diff --git a/demos/forestpond/source/forestpond.cpp b/demos/forestpond/source/forestpond.cpp index e480d209..39f4ce6c 100644 --- a/demos/forestpond/source/forestpond.cpp +++ b/demos/forestpond/source/forestpond.cpp @@ -15,7 +15,7 @@ ForestPond::ForestPond(int, char **): camera(resources.get("Camera.camera")) { window.set_title("Forest Pond"); - window.signal_close.connect(sigc::bind(sigc::mem_fun(this, &DesertPillars::exit), 0)); + window.signal_close.connect(sigc::bind(sigc::mem_fun(this, &ForestPond::exit), 0)); GL::SequenceBuilder seq_bld(resources.get("Forest.seq")); seq_bld.set_debug_name("Main sequence");