aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/tests/libsample/pen.h
diff options
context:
space:
mode:
authorQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2022-09-24 03:01:04 +0000
committerQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2022-09-24 03:01:04 +0000
commit5a93b20553ab55b94fef60fa5f92387f4ead6bea (patch)
tree9f94db8d9fa6331dac49ff9a849b58d036aabcf3 /sources/shiboken6/tests/libsample/pen.h
parent09189296271176e32507100f32e9ee1b155b61f7 (diff)
parent76d6758a8d6f5136d5eba63e787fbf27ed5450e5 (diff)
Merge branch 6.3 into wip/6.3_pypywip/6.3_pypy
Diffstat (limited to 'sources/shiboken6/tests/libsample/pen.h')
-rw-r--r--sources/shiboken6/tests/libsample/pen.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/sources/shiboken6/tests/libsample/pen.h b/sources/shiboken6/tests/libsample/pen.h
index 3e4fe5dd8..d66e5fd9e 100644
--- a/sources/shiboken6/tests/libsample/pen.h
+++ b/sources/shiboken6/tests/libsample/pen.h
@@ -74,7 +74,10 @@ public:
Pen();
Pen(SampleNamespace::Option option);
Pen(const Color& color);
- Pen(const Pen& pen);
+ Pen(const Pen &pen);
+ Pen(Pen &&);
+ Pen &operator=(const Pen &pen);
+ Pen &operator=(Pen &&);
// PYSIDE-1325, default initializer
void drawLine(int x1, int y1, int x2, int y2, RenderHints renderHints = {});