/[svn]/linuxsampler/trunk/src/plugins/InstrumentEditor.cpp
ViewVC logotype

Diff of /linuxsampler/trunk/src/plugins/InstrumentEditor.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 3707 by schoenebeck, Fri Jun 23 12:24:58 2017 UTC revision 3708 by schoenebeck, Wed Jan 8 22:11:30 2020 UTC
# Line 1  Line 1 
1  /***************************************************************************  /***************************************************************************
2   *                                                                         *   *                                                                         *
3   *   Copyright (C) 2007 - 2017 Christian Schoenebeck                       *   *   Copyright (C) 2007 - 2020 Christian Schoenebeck                       *
4   *                                                                         *   *                                                                         *
5   *   This program is free software; you can redistribute it and/or modify  *   *   This program is free software; you can redistribute it and/or modify  *
6   *   it under the terms of the GNU General Public License as published by  *   *   it under the terms of the GNU General Public License as published by  *
# Line 61  namespace LinuxSampler { Line 61  namespace LinuxSampler {
61          // notify all registered listeners          // notify all registered listeners
62          std::for_each(          std::for_each(
63              listeners.begin(), listeners.end(),              listeners.begin(), listeners.end(),
64              std::bind2nd(std::mem_fun(&InstrumentEditorListener::OnInstrumentEditorQuit), this)              [this](InstrumentEditorListener* listener) {
65                    listener->OnInstrumentEditorQuit(this);
66                }
67          );          );
68          // done          // done
69          StopThread();          StopThread();

Legend:
Removed from v.3707  
changed lines
  Added in v.3708

  ViewVC Help
Powered by ViewVC