Changeset 31601 in vbox for trunk/src/libs/xpcom18a4/python
- Timestamp:
- Aug 12, 2010 2:32:51 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/python/src/module/_xpcom.cpp
r26979 r31601 523 523 return PyInt_FromLong(1); 524 524 525 return NULL; /** @todo throw correct exception */525 return PyInt_FromLong(2); 526 526 } 527 527 … … 534 534 return NULL; 535 535 536 aEventQ->interruptEventQueueProcessing(); 537 538 return PyInt_FromLong(0); 536 int rc = aEventQ->interruptEventQueueProcessing(); 537 return PyBool_FromLong(RT_SUCCESS(rc)); 539 538 } 540 539
Note:
See TracChangeset
for help on using the changeset viewer.