From 7e40e00fa45fd1a61b0dc23503c8c34342857d7b Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Fri, 20 Jun 2008 15:50:24 +0000 Subject: [PATCH] Fix again the previous commit. I forgot to commit . Sorry for the spam. (QObjects must have parents!) --- GraphicsView/include/CGAL/IO/QtInput.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/GraphicsView/include/CGAL/IO/QtInput.h b/GraphicsView/include/CGAL/IO/QtInput.h index 2bb521a999b..bf7572a62e4 100644 --- a/GraphicsView/include/CGAL/IO/QtInput.h +++ b/GraphicsView/include/CGAL/IO/QtInput.h @@ -10,13 +10,15 @@ class QtInput : public QObject { Q_OBJECT +public: + QtInput(QObject* parent) : QObject(parent) + { + } + signals: - void generate(CGAL::Object o); - }; - } // namespace CGAL #endif // CGAL_Q_INPUT_H