@@ -204,7 +204,7 @@ extern SDL_DECLSPEC SDL_TrayMenu *SDLCALL SDL_GetTrayMenu(SDL_Tray *tray);
204
204
/**
205
205
* Gets a previously created tray entry submenu.
206
206
*
207
- * You should have called SDL_CreateTraySubenu () on the entry object. This
207
+ * You should have called SDL_CreateTraySubmenu () on the entry object. This
208
208
* function allows you to fetch it again later.
209
209
*
210
210
* This function does the same thing as SDL_GetTrayMenu(), except that it
@@ -317,7 +317,7 @@ extern SDL_DECLSPEC const char *SDLCALL SDL_GetTrayEntryLabel(SDL_TrayEntry *ent
317
317
* The entry must have been created with the SDL_TRAYENTRY_CHECKBOX flag.
318
318
*
319
319
* \param entry the entry to be updated.
320
- * \param checked SDL_TRUE if the entry should be checked; SDL_FALSE
320
+ * \param checked true if the entry should be checked; false
321
321
* otherwise.
322
322
*
323
323
* \since This function is available since SDL 3.1.8.
@@ -334,7 +334,7 @@ extern SDL_DECLSPEC void SDLCALL SDL_SetTrayEntryChecked(SDL_TrayEntry *entry, b
334
334
* The entry must have been created with the SDL_TRAYENTRY_CHECKBOX flag.
335
335
*
336
336
* \param entry the entry to be read.
337
- * \returns SDL_TRUE if the entry is checked; SDL_FALSE otherwise.
337
+ * \returns true if the entry is checked; false otherwise.
338
338
*
339
339
* \since This function is available since SDL 3.1.8.
340
340
*
@@ -348,7 +348,7 @@ extern SDL_DECLSPEC bool SDLCALL SDL_GetTrayEntryChecked(SDL_TrayEntry *entry);
348
348
* Sets whether or not an entry is enabled.
349
349
*
350
350
* \param entry the entry to be updated.
351
- * \param enabled SDL_TRUE if the entry should be enabled; SDL_FALSE
351
+ * \param enabled true if the entry should be enabled; false
352
352
* otherwise.
353
353
*
354
354
* \since This function is available since SDL 3.1.8.
@@ -363,7 +363,7 @@ extern SDL_DECLSPEC void SDLCALL SDL_SetTrayEntryEnabled(SDL_TrayEntry *entry, b
363
363
* Gets whether or not an entry is enabled.
364
364
*
365
365
* \param entry the entry to be read.
366
- * \returns SDL_TRUE if the entry is enabled; SDL_FALSE otherwise.
366
+ * \returns true if the entry is enabled; false otherwise.
367
367
*
368
368
* \since This function is available since SDL 3.1.8.
369
369
*
0 commit comments