cppcheck: further fixes

This commit is contained in:
Ingo Weyrich
2019-08-01 14:02:38 +02:00
parent 41fc34c5c6
commit 46cbb652d5
30 changed files with 77 additions and 54 deletions

View File

@@ -25,6 +25,7 @@
#include "editcallbacks.h"
#include "mydiagonalcurve.h"
#include "myflatcurve.h"
#include "../rtengine/noncopyable.h"
class CurveEditorGroup;
class CurveEditorSubGroup;
@@ -38,7 +39,7 @@ class CurveEditorSubGroup;
/** @brief This class is an interface between RT and the curve editor group
* It handles the methods related to a specific curve. It is created by CurveEditorGroup::addCurve
*/
class CurveEditor : public EditSubscriber
class CurveEditor : public EditSubscriber, public rtengine::NonCopyable
{
friend class CurveEditorGroup;