Fixed documentation warnings

- WindowImpl.hpp:94:16: warning: parameter 'threshold:' not found in the function declaration
 - SFContext.hpp:120:16: warning: parameter 'enabled:' not found in the function declaration
This commit is contained in:
Marco Antognini 2014-10-07 12:00:17 +02:00
parent ef6391678e
commit b2ba2307b3
2 changed files with 3 additions and 3 deletions

View File

@ -117,7 +117,7 @@ public:
/// This can avoid some visual artifacts, and limit the framerate
/// to a good value (but not constant across different computers).
///
/// \param enabled: True to enable v-sync, false to deactivate
/// \param enabled True to enable v-sync, false to deactivate
///
////////////////////////////////////////////////////////////
virtual void setVerticalSyncEnabled(bool enabled);

View File

@ -91,7 +91,7 @@ public:
/// \brief Change the joystick threshold, ie. the value below which
/// no move event will be generated
///
/// \param threshold: New threshold, in range [0, 100]
/// \param threshold New threshold, in range [0, 100]
///
////////////////////////////////////////////////////////////
void setJoystickThreshold(float threshold);
@ -227,7 +227,7 @@ private:
///
////////////////////////////////////////////////////////////
void processJoystickEvents();
////////////////////////////////////////////////////////////
/// \brief Read the sensors state and generate the appropriate events
///