Fix comment style from // to /**/

This commit is contained in:
Mario Hüttel 2020-04-07 15:39:38 +02:00
parent 00d02b8291
commit f7d15c7267
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ struct layer_info
{
int layer; /**< @brief Layer number */
char *name; /**< @brief Layer name. */
int stacked_position; ///< @brief Position of layer in output @warning This parameter is not used by any renderer so far @note Lower is bottom, higher is top
int stacked_position; /**< @brief Position of layer in output @warning This parameter is not used by any renderer so far @note Lower is bottom, higher is top */
GdkRGBA color; /**< @brief RGBA color used to render this layer */
int render; /**< @brief true: Render to output */
};