- Timestamp:
- Apr 2, 2009 3:28:09 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ProgressImpl.cpp
r18406 r18643 137 137 138 138 #if !defined (VBOX_COM_INPROC) 139 /* add to the global collec iton of progess operations (note: after139 /* add to the global collection of progress operations (note: after 140 140 * creating mId) */ 141 141 mParent->addProgress (this); … … 719 719 720 720 /** 721 * @note XPCOM: when this method is called not on the main XPCOM thread, itit721 * @note XPCOM: when this method is not called on the main XPCOM thread, it 722 722 * simply blocks the thread until mCompletedSem is signalled. If the 723 723 * thread has its own event queue (hmm, what for?) that it must run, then 724 * calling this method will definite y freese event processing.724 * calling this method will definitely freeze event processing. 725 725 */ 726 726 STDMETHODIMP Progress::WaitForCompletion (LONG aTimeout) … … 780 780 781 781 /** 782 * @note XPCOM: when this method is called not on the main XPCOM thread, itit782 * @note XPCOM: when this method is not called on the main XPCOM thread, it 783 783 * simply blocks the thread until mCompletedSem is signalled. If the 784 784 * thread has its own event queue (hmm, what for?) that it must run, then 785 * calling this method will definite y freese event processing.785 * calling this method will definitely freeze event processing. 786 786 */ 787 787 STDMETHODIMP Progress::WaitForOperationCompletion(ULONG aOperation, LONG aTimeout) … … 1028 1028 * 1029 1029 * @param aResultCode Operation result (error) code, must not be S_OK. 1030 * @param aIID IID of the int rface that defines the error.1030 * @param aIID IID of the interface that defines the error. 1031 1031 * @param aComponent Name of the component that generates the error. 1032 1032 * @param aText Error message (must not be null), an RTStrPrintf-like … … 1052 1052 * *, const char *, ...) for more info. 1053 1053 * 1054 * This method is preferred i yyou have a ready (translated and formatted) Bstr1054 * This method is preferred if you have a ready (translated and formatted) Bstr 1055 1055 * string, because it omits an extra conversion Utf8Str -> Bstr. 1056 1056 * 1057 1057 * @param aResultCode Operation result (error) code, must not be S_OK. 1058 * @param aIID IID of the int rface that defines the error.1058 * @param aIID IID of the interface that defines the error. 1059 1059 * @param aComponent Name of the component that generates the error. 1060 1060 * @param aText Error message (must not be null). … … 1399 1399 1400 1400 /** 1401 * @note XPCOM: when this method is called not on the main XPCOM thread, it it1401 * @note XPCOM: when this method is called not on the main XPCOM thread, it 1402 1402 * simply blocks the thread until mCompletedSem is signalled. If the 1403 1403 * thread has its own event queue (hmm, what for?) that it must run, then 1404 * calling this method will definite y freese event processing.1404 * calling this method will definitely freeze event processing. 1405 1405 */ 1406 1406 STDMETHODIMP CombinedProgress::WaitForCompletion (LONG aTimeout) … … 1454 1454 1455 1455 /** 1456 * @note XPCOM: when this method is called not on the main XPCOM thread, it it1456 * @note XPCOM: when this method is called not on the main XPCOM thread, it 1457 1457 * simply blocks the thread until mCompletedSem is signalled. If the 1458 1458 * thread has its own event queue (hmm, what for?) that it must run, then 1459 * calling this method will definite y freese event processing.1459 * calling this method will definitely freeze event processing. 1460 1460 */ 1461 1461 STDMETHODIMP CombinedProgress::WaitForOperationCompletion (ULONG aOperation, LONG aTimeout) … … 1561 1561 /** 1562 1562 * Fetches the properties of the current progress object and, if it is 1563 * successfully completed, advances to the next uncompleted or unsuc essfully1563 * successfully completed, advances to the next uncompleted or unsuccessfully 1564 1564 * completed object in the vector of combined progress objects. 1565 1565 *
Note:
See TracChangeset
for help on using the changeset viewer.