summaryrefslogtreecommitdiff
path: root/dev-ros/qt_gui_cpp/files/sip.patch
blob: 8157a9bc68d7209f8d3c6ff0a8e2f21b6334efa5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
From 5ecb3a219146816916c4a94e32664850548a2085 Mon Sep 17 00:00:00 2001
From: Johannes Meyer <johannes@intermodalics.eu>
Date: Tue, 7 Jul 2020 01:20:51 +0200
Subject: [PATCH] qt_gui_cpp_sip: declare private assignment operator for SIP
 (#226)

---
 qt_gui_cpp/src/qt_gui_cpp_sip/plugin_context.sip | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/qt_gui_cpp/src/qt_gui_cpp_sip/plugin_context.sip b/qt_gui_cpp/src/qt_gui_cpp_sip/plugin_context.sip
index 286d52e6..1d37a37d 100644
--- a/src/qt_gui_cpp_sip/plugin_context.sip
+++ b/src/qt_gui_cpp_sip/plugin_context.sip
@@ -25,6 +25,10 @@ public:
 
   void reloadPlugin();
 
+private:
+
+  PluginContext& operator=(const PluginContext&);
+
 };
 
 };