Minor fixes in API documentation

git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1569 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
LaurentGom 2010-09-14 21:51:39 +00:00
parent 5763e7b950
commit 36f9cf6cc1
4 changed files with 6 additions and 2 deletions

View File

@ -92,7 +92,7 @@ public :
bool LoadFromFile(const std::string& filename); bool LoadFromFile(const std::string& filename);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \brief Load the font from a file /// \brief Load the font from a file in memory
/// ///
/// The supported font formats are: TrueType, Type 1, CFF, /// The supported font formats are: TrueType, Type 1, CFF,
/// OpenType, SFNT, X11 PCF, Windows FNT, BDF, PFR and Type 42. /// OpenType, SFNT, X11 PCF, Windows FNT, BDF, PFR and Type 42.

View File

@ -103,7 +103,7 @@ private :
/// ///
/// When you want to protect a part of the code from being accessed /// When you want to protect a part of the code from being accessed
/// simultaneously by multiple threads, you typically use a /// simultaneously by multiple threads, you typically use a
/// mutex. When a thread is locked by a thread, any other thread /// mutex. When a thread is locked by a mutex, any other thread
/// trying to lock it will be blocked until the mutex is released /// trying to lock it will be blocked until the mutex is released
/// by the thread that locked it. This way, you can allow only /// by the thread that locked it. This way, you can allow only
/// one thread at a time to access a critical region of your code. /// one thread at a time to access a critical region of your code.

View File

@ -41,6 +41,8 @@ public :
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \brief Default constructor /// \brief Default constructor
/// ///
/// Creates a Vector2(0, 0).
///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
Vector2(); Vector2();

View File

@ -41,6 +41,8 @@ public :
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \brief Default constructor /// \brief Default constructor
/// ///
/// Creates a Vector3(0, 0, 0).
///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
Vector3(); Vector3();