From bc081f6ef3989af14f73e97cd3df3538671dd80b Mon Sep 17 00:00:00 2001 From: Gabor Kiss-Vamosi Date: Wed, 31 Mar 2021 20:13:46 +0200 Subject: [PATCH] fix(comment) remove https:// from lv_conf_template.h comments beacsue they caused nested comment warning Fixes https://github.com/lvgl/lvgl/commit/66c1105ef643d2c534fac3918a634b442b442c47#r48929310 --- lv_conf_template.h | 8 ++++---- src/lv_conf_internal.h | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/lv_conf_template.h b/lv_conf_template.h index b131763cc..babe783f3 100644 --- a/lv_conf_template.h +++ b/lv_conf_template.h @@ -264,7 +264,7 @@ typedef void * lv_user_data_t; *===================*/ /*Montserrat fonts with ASCII range and some symbols using bpp = 4 - *https://fonts.google.com/specimen/Montserrat*/ + *fonts.google.com/specimen/Montserrat*/ #define LV_FONT_MONTSERRAT_8 0 #define LV_FONT_MONTSERRAT_10 0 #define LV_FONT_MONTSERRAT_12 0 @@ -294,7 +294,7 @@ typedef void * lv_user_data_t; #define LV_FONT_SIMSUN_16_CJK 0 /*1000 most common CJK radicals*/ /*Pixel perfect monospace fonts - *http://pelulamu.net/unscii/*/ + *pelulamu.net/unscii/*/ #define LV_FONT_UNSCII_8 0 #define LV_FONT_UNSCII_16 0 @@ -353,7 +353,7 @@ typedef void * lv_user_data_t; /*Support bidirectional texts. Allows mixing Left-to-Right and Right-to-Left texts. *The direction will be processed according to the Unicode Bidirectioanl Algorithm: - *https://www.w3.org/International/articles/inline-bidi-markup/uba-basics*/ + *www.w3.org/International/articles/inline-bidi-markup/uba-basics*/ #define LV_USE_BIDI 0 #if LV_USE_BIDI /*Set the default direction. Supported values: @@ -371,7 +371,7 @@ typedef void * lv_user_data_t; * WIDGET USAGE *================*/ -/*Documentation of the widgets: https://docs.lvgl.io/latest/en/html/widgets/index.html*/ +/*Documentation of the widgets: docs.lvgl.io/latest/en/html/widgets/index.html*/ #define LV_USE_ARC 1 diff --git a/src/lv_conf_internal.h b/src/lv_conf_internal.h index 226f95b52..c12f58466 100644 --- a/src/lv_conf_internal.h +++ b/src/lv_conf_internal.h @@ -702,7 +702,7 @@ e.g. "stm32f769xx.h" or "stm32f429xx.h"*/ *===================*/ /*Montserrat fonts with ASCII range and some symbols using bpp = 4 - *https://fonts.google.com/specimen/Montserrat*/ + *fonts.google.com/specimen/Montserrat*/ #ifndef LV_FONT_MONTSERRAT_8 # ifdef CONFIG_LV_FONT_MONTSERRAT_8 # define LV_FONT_MONTSERRAT_8 CONFIG_LV_FONT_MONTSERRAT_8 @@ -882,7 +882,7 @@ e.g. "stm32f769xx.h" or "stm32f429xx.h"*/ #endif /*Pixel perfect monospace fonts - *http://pelulamu.net/unscii/*/ + *pelulamu.net/unscii/*/ #ifndef LV_FONT_UNSCII_8 # ifdef CONFIG_LV_FONT_UNSCII_8 # define LV_FONT_UNSCII_8 CONFIG_LV_FONT_UNSCII_8 @@ -1025,7 +1025,7 @@ e.g. "stm32f769xx.h" or "stm32f429xx.h"*/ /*Support bidirectional texts. Allows mixing Left-to-Right and Right-to-Left texts. *The direction will be processed according to the Unicode Bidirectioanl Algorithm: - *https://www.w3.org/International/articles/inline-bidi-markup/uba-basics*/ + *www.w3.org/International/articles/inline-bidi-markup/uba-basics*/ #ifndef LV_USE_BIDI # ifdef CONFIG_LV_USE_BIDI # define LV_USE_BIDI CONFIG_LV_USE_BIDI @@ -1061,7 +1061,7 @@ e.g. "stm32f769xx.h" or "stm32f429xx.h"*/ * WIDGET USAGE *================*/ -/*Documentation of the widgets: https://docs.lvgl.io/latest/en/html/widgets/index.html*/ +/*Documentation of the widgets: docs.lvgl.io/latest/en/html/widgets/index.html*/ #ifndef LV_USE_ARC # ifdef CONFIG_LV_USE_ARC @@ -1411,7 +1411,7 @@ e.g. "stm32f769xx.h" or "stm32f429xx.h"*/ # ifdef CONFIG_LV_THEME_DEFAULT_GROW # define LV_THEME_DEFAULT_GROW CONFIG_LV_THEME_DEFAULT_GROW # else -# define LV_THEME_DEFAULT_GROW 1 +# define LV_THEME_DEFAULT_GROW 1 # endif #endif