Changeset 26088 in vbox for trunk/src/VBox/Main/AudioAdapterImpl.cpp
- Timestamp:
- Jan 28, 2010 4:50:32 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/AudioAdapterImpl.cpp
r26046 r26088 414 414 } 415 415 416 bool AudioAdapter::isModified() 417 { 418 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); 419 return mData.isBackedUp(); 420 } 421 422 bool AudioAdapter::isReallyModified() 423 { 424 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); 425 return mData.hasActualChanges(); 426 } 427 416 428 /** 417 429 * @note Locks this object for writing. … … 471 483 * represented by @a aThat (locked for reading). 472 484 */ 473 void AudioAdapter::copyFrom 485 void AudioAdapter::copyFrom(AudioAdapter *aThat) 474 486 { 475 487 AssertReturnVoid (aThat != NULL); … … 489 501 490 502 /* this will back up current data */ 491 mData.assignCopy 503 mData.assignCopy(aThat->mData); 492 504 } 493 505 /* vi: set tabstop=4 shiftwidth=4 expandtab: */
Note:
See TracChangeset
for help on using the changeset viewer.