Fixed Doxygen warnings.
1.1 --- a/include/SDL_messagebox.h Mon May 13 23:00:50 2013 +0200
1.2 +++ b/include/SDL_messagebox.h Wed May 15 22:00:28 2013 +0200
1.3 @@ -58,7 +58,7 @@
1.4 typedef struct
1.5 {
1.6 Uint32 flags; /**< ::SDL_MessageBoxButtonFlags */
1.7 - int buttonid; /**< User defined button id (value returned via SDL_MessageBox) */
1.8 + int buttonid; /**< User defined button id (value returned via SDL_ShowMessageBox) */
1.9 const char * text; /**< The UTF-8 button text */
1.10 } SDL_MessageBoxButtonData;
1.11
1.12 @@ -107,7 +107,7 @@
1.13 /**
1.14 * \brief Create a modal message box.
1.15 *
1.16 - * \param messagebox The SDL_MessageBox structure with title, text, etc.
1.17 + * \param messageboxdata The SDL_MessageBoxData structure with title, text, etc.
1.18 *
1.19 * \return -1 on error, otherwise 0 and buttonid contains user id of button
1.20 * hit or -1 if dialog was closed.
2.1 --- a/include/SDL_render.h Mon May 13 23:00:50 2013 +0200
2.2 +++ b/include/SDL_render.h Wed May 15 22:00:28 2013 +0200
2.3 @@ -460,7 +460,7 @@
2.4 *
2.5 * \sa SDL_RenderSetLogicalSize()
2.6 */
2.7 -extern DECLSPEC void SDLCALL SDL_RenderGetLogicalSize(SDL_Renderer * renderer, int *w, int *y);
2.8 +extern DECLSPEC void SDLCALL SDL_RenderGetLogicalSize(SDL_Renderer * renderer, int *w, int *h);
2.9
2.10 /**
2.11 * \brief Set the drawing area for rendering on the current target.
3.1 --- a/include/SDL_video.h Mon May 13 23:00:50 2013 +0200
3.2 +++ b/include/SDL_video.h Wed May 15 22:00:28 2013 +0200
3.3 @@ -504,6 +504,7 @@
3.4 /**
3.5 * \brief Get the position of a window.
3.6 *
3.7 + * \param window The window to query.
3.8 * \param x Pointer to variable for storing the x position, may be NULL
3.9 * \param y Pointer to variable for storing the y position, may be NULL
3.10 *
3.11 @@ -515,6 +516,7 @@
3.12 /**
3.13 * \brief Set the size of a window's client area.
3.14 *
3.15 + * \param window The window to resize.
3.16 * \param w The width of the window, must be >0
3.17 * \param h The height of the window, must be >0
3.18 *
3.19 @@ -529,6 +531,7 @@
3.20 /**
3.21 * \brief Get the size of a window's client area.
3.22 *
3.23 + * \param window The window to query.
3.24 * \param w Pointer to variable for storing the width, may be NULL
3.25 * \param h Pointer to variable for storing the height, may be NULL
3.26 *
3.27 @@ -540,6 +543,7 @@
3.28 /**
3.29 * \brief Set the minimum size of a window's client area.
3.30 *
3.31 + * \param window The window to set a new minimum size.
3.32 * \param min_w The minimum width of the window, must be >0
3.33 * \param min_h The minimum height of the window, must be >0
3.34 *
3.35 @@ -555,6 +559,7 @@
3.36 /**
3.37 * \brief Get the minimum size of a window's client area.
3.38 *
3.39 + * \param window The window to query.
3.40 * \param w Pointer to variable for storing the minimum width, may be NULL
3.41 * \param h Pointer to variable for storing the minimum height, may be NULL
3.42 *
3.43 @@ -567,6 +572,7 @@
3.44 /**
3.45 * \brief Set the maximum size of a window's client area.
3.46 *
3.47 + * \param window The window to set a new maximum size.
3.48 * \param max_w The maximum width of the window, must be >0
3.49 * \param max_h The maximum height of the window, must be >0
3.50 *
3.51 @@ -582,6 +588,7 @@
3.52 /**
3.53 * \brief Get the maximum size of a window's client area.
3.54 *
3.55 + * \param window The window to query.
3.56 * \param w Pointer to variable for storing the maximum width, may be NULL
3.57 * \param h Pointer to variable for storing the maximum height, may be NULL
3.58 *