From Magnus Kessler, typo and documentation fixes
This commit is contained in:
@@ -20,7 +20,7 @@
|
||||
|
||||
namespace osg {
|
||||
|
||||
/** Observer base class for tracking when objects are unreferenced (there reference count goes to 0) and are being deleted.*/
|
||||
/** Observer base class for tracking when objects are unreferenced (their reference count goes to 0) and are being deleted.*/
|
||||
class OSG_EXPORT Observer
|
||||
{
|
||||
public:
|
||||
@@ -28,7 +28,7 @@ class OSG_EXPORT Observer
|
||||
virtual ~Observer();
|
||||
|
||||
/** objectDeleted is called when the observed object is about to be deleted. The observer will be automatically
|
||||
* removed from the observerd objects observer set so there is no need for the objectDeleted implementation
|
||||
* removed from the observed object's observer set so there is no need for the objectDeleted implementation
|
||||
* to call removeObserver() on the observed object. */
|
||||
virtual void objectDeleted(void*) {}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user