Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Ben Boeckel
QtTesting
Commits
c56e1146
Commit
c56e1146
authored
Feb 27, 2007
by
Clinton Stimpson
Browse files
BUG: setProperty takes 3 args, not 2.
parent
93694c6f
Changes
1
Hide whitespace changes
Inline
Side-by-side
pqPythonEventSource.cxx
View file @
c56e1146
...
...
@@ -159,7 +159,7 @@ QtTesting_setProperty(PyObject* /*self*/, PyObject* args)
const
char
*
property
=
0
;
const
char
*
value
=
0
;
if
(
!
PyArg_ParseTuple
(
args
,
const_cast
<
char
*>
(
"ss"
),
&
object
,
if
(
!
PyArg_ParseTuple
(
args
,
const_cast
<
char
*>
(
"ss
s
"
),
&
object
,
&
property
,
&
value
))
{
return
NULL
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment