File tree 1 file changed +12
-0
lines changed
src/gui/editorwidgets/core
1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -217,7 +217,11 @@ class GUI_EXPORT QgsEditorWidgetWrapper : public QgsWidgetWrapper
217
217
* \param value The value
218
218
* \note Python name valueChangedInt
219
219
*/
220
+ #ifndef SIP_RUN
221
+ void valueChanged ( int value );
222
+ #else
220
223
void valueChanged ( int value ) SIP_PYNAME( valueChangedInt );
224
+ #endif
221
225
222
226
/* *
223
227
* If you emit to this slot in your implementation, an appropriate change notification
@@ -226,7 +230,11 @@ class GUI_EXPORT QgsEditorWidgetWrapper : public QgsWidgetWrapper
226
230
* \param value The value
227
231
* \note Python name valueChangedDouble
228
232
*/
233
+ #ifndef SIP_RUN
234
+ void valueChanged ( double value );
235
+ #else
229
236
void valueChanged ( double value ) SIP_PYNAME( valueChangedDouble );
237
+ #endif
230
238
231
239
/* *
232
240
* If you emit to this slot in your implementation, an appropriate change notification
@@ -235,7 +243,11 @@ class GUI_EXPORT QgsEditorWidgetWrapper : public QgsWidgetWrapper
235
243
* \param value The value
236
244
* \note Python name valueChangedBool
237
245
*/
246
+ #ifndef SIP_RUN
247
+ void valueChanged ( bool value );
248
+ #else
238
249
void valueChanged ( bool value ) SIP_PYNAME( valueChangedBool );
250
+ #endif
239
251
240
252
/* *
241
253
* If you emit to this slot in your implementation, an appropriate change notification
You can’t perform that action at this time.
0 commit comments