summaryrefslogtreecommitdiff
path: root/debian/patches/0005-Support-QGLViewer-2.7.patch
diff options
context:
space:
mode:
Diffstat (limited to 'debian/patches/0005-Support-QGLViewer-2.7.patch')
-rw-r--r--debian/patches/0005-Support-QGLViewer-2.7.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/debian/patches/0005-Support-QGLViewer-2.7.patch b/debian/patches/0005-Support-QGLViewer-2.7.patch
new file mode 100644
index 00000000..2f367d5f
--- /dev/null
+++ b/debian/patches/0005-Support-QGLViewer-2.7.patch
@@ -0,0 +1,26 @@
+From: Gard Spreemann <gspr@nonempty.org>
+Date: Mon, 14 Nov 2022 17:28:23 +0100
+Subject: Support QGLViewer >=2.7
+
+This is Marc Glisse's commit 1e71120bdacb6f5ec4c90fb4c1365f76ecea7ff9
+proposed upstream.
+---
+ src/GudhUI/view/Viewer.cpp | 4 ++++
+ 1 file changed, 4 insertions(+)
+
+diff --git a/src/GudhUI/view/Viewer.cpp b/src/GudhUI/view/Viewer.cpp
+index 6b17c83..2c00f86 100644
+--- a/src/GudhUI/view/Viewer.cpp
++++ b/src/GudhUI/view/Viewer.cpp
+@@ -31,7 +31,11 @@ void Viewer::set_bounding_box(const Point_3 & lower_left, const Point_3 & upper_
+ }
+
+ void Viewer::update_GL() {
++#if QGLVIEWER_VERSION >= 0x020700
++ this->update();
++#else
+ this->updateGL();
++#endif
+ }
+
+ void Viewer::init_scene() {