Changeset 98262 in vbox for trunk/src/VBox/Main/src-client/GuestDnDTargetImpl.cpp
- Timestamp:
- Jan 24, 2023 1:42:14 AM (23 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestDnDTargetImpl.cpp
r98103 r98262 199 199 200 200 AutoCaller autoCaller(this); 201 if (autoCaller.isNotOk()) return autoCaller. rc();201 if (autoCaller.isNotOk()) return autoCaller.hrc(); 202 202 203 203 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); … … 216 216 217 217 AutoCaller autoCaller(this); 218 if (autoCaller.isNotOk()) return autoCaller. rc();218 if (autoCaller.isNotOk()) return autoCaller.hrc(); 219 219 220 220 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); … … 233 233 234 234 AutoCaller autoCaller(this); 235 if (autoCaller.isNotOk()) return autoCaller. rc();235 if (autoCaller.isNotOk()) return autoCaller.hrc(); 236 236 237 237 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); … … 248 248 249 249 AutoCaller autoCaller(this); 250 if (autoCaller.isNotOk()) return autoCaller. rc();250 if (autoCaller.isNotOk()) return autoCaller.hrc(); 251 251 252 252 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); … … 278 278 279 279 AutoCaller autoCaller(this); 280 if (autoCaller.isNotOk()) return autoCaller. rc();280 if (autoCaller.isNotOk()) return autoCaller.hrc(); 281 281 282 282 /* Default action is ignoring. */ … … 396 396 397 397 AutoCaller autoCaller(this); 398 if (autoCaller.isNotOk()) return autoCaller. rc();398 if (autoCaller.isNotOk()) return autoCaller.hrc(); 399 399 400 400 /* Default action is ignoring. */ … … 501 501 502 502 AutoCaller autoCaller(this); 503 if (autoCaller.isNotOk()) return autoCaller. rc();503 if (autoCaller.isNotOk()) return autoCaller.hrc(); 504 504 505 505 GuestDnDState *pState = GuestDnDInst()->getState(); … … 577 577 578 578 AutoCaller autoCaller(this); 579 if (FAILED(autoCaller. rc())) return autoCaller.rc();579 if (FAILED(autoCaller.hrc())) return autoCaller.hrc(); 580 580 581 581 /* Default action is ignoring. */ … … 698 698 699 699 AutoCaller autoCaller(this); 700 if (FAILED(autoCaller. rc())) return autoCaller.rc();700 if (FAILED(autoCaller.hrc())) return autoCaller.hrc(); 701 701 702 702 /* Input validation. */
Note:
See TracChangeset
for help on using the changeset viewer.