Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-08-21 19:14:29 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-08-21 19:14:29 +0400
commit3090ae35afe478435a77be6a9c1be913fe406242 (patch)
tree598e1d42ff89a6cc99355a1e34e0f053bb3d786e /source/blender/compositor/operations/COM_CurveBaseOperation.h
parent857a3cd1120c402e22928e7d43612a9fee72a80d (diff)
fix [#32374] Curve compositor UI drawing glitch
copy the curve for the compositor.
Diffstat (limited to 'source/blender/compositor/operations/COM_CurveBaseOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_CurveBaseOperation.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/compositor/operations/COM_CurveBaseOperation.h b/source/blender/compositor/operations/COM_CurveBaseOperation.h
index 1636c13a571..6bfce26f532 100644
--- a/source/blender/compositor/operations/COM_CurveBaseOperation.h
+++ b/source/blender/compositor/operations/COM_CurveBaseOperation.h
@@ -38,7 +38,8 @@ public:
* Initialize the execution
*/
void initExecution();
+ void deinitExecution();
- void setCurveMapping(CurveMapping *mapping) { this->m_curveMapping = mapping; }
+ void setCurveMapping(CurveMapping *mapping);
};
#endif