Browse Source

Documentation: better word order.

pull/279/head
Vladimír Vondruš 14 years ago
parent
commit
990dccdd76
  1. 4
      src/Object.h

4
src/Object.h

@ -191,7 +191,7 @@ class MAGNUM_EXPORT Object {
* *
* Recursively calls setDirty() on every child. If the object is already * Recursively calls setDirty() on every child. If the object is already
* marked as dirty, the function does nothing. * marked as dirty, the function does nothing.
* @attention Reimplementations must also call this function! * @attention Reimplementations must call also this function!
*/ */
virtual void setDirty(); virtual void setDirty();
@ -201,7 +201,7 @@ class MAGNUM_EXPORT Object {
* Recursively calls setClean() on every parent. Default implementation * Recursively calls setClean() on every parent. Default implementation
* only marks the object as clean, but if the object does any caching, * only marks the object as clean, but if the object does any caching,
* this function should be reimplemented to regenerate the cache. * this function should be reimplemented to regenerate the cache.
* @attention Reimplementations must also call this function! * @attention Reimplementations must call also this function!
*/ */
virtual void setClean(); virtual void setClean();

Loading…
Cancel
Save