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:
Diffstat (limited to 'source/blender/freestyle/intern/app_blender/AppGLWidget_constraint.h')
-rw-r--r--source/blender/freestyle/intern/app_blender/AppGLWidget_constraint.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/freestyle/intern/app_blender/AppGLWidget_constraint.h b/source/blender/freestyle/intern/app_blender/AppGLWidget_constraint.h
index 64e8d333d74..4bd629a05de 100644
--- a/source/blender/freestyle/intern/app_blender/AppGLWidget_constraint.h
+++ b/source/blender/freestyle/intern/app_blender/AppGLWidget_constraint.h
@@ -31,7 +31,7 @@
//namespace qglviewer {
class Frame;
- class Camera;
+ class AppGLWidget_Camera;
/*! \brief An interface class for Frame constraints.
\class Constraint constraint.h QGLViewer/constraint.h
@@ -322,7 +322,7 @@
class CameraConstraint : public AxisPlaneConstraint
{
public:
- explicit CameraConstraint(const Camera* const camera);
+ explicit CameraConstraint(const AppGLWidget_Camera* const camera);
/*! Virtual destructor. Empty. */
virtual ~CameraConstraint() {};
@@ -330,10 +330,10 @@
virtual void constrainRotation (Quaternion& rotation, Frame* const frame);
/*! Returns the associated Camera. Set using the CameraConstraint constructor. */
- const Camera* camera() const { return camera_; };
+ const AppGLWidget_Camera* camera() const { return camera_; };
private:
- const Camera* const camera_;
+ const AppGLWidget_Camera* const camera_;
};
//} // namespace qglviewer