Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'applications/gui/modules/widget_elements/widget_element_frame.c')
-rwxr-xr-xapplications/gui/modules/widget_elements/widget_element_frame.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/gui/modules/widget_elements/widget_element_frame.c b/applications/gui/modules/widget_elements/widget_element_frame.c
index a8e00d9a..a7265348 100755
--- a/applications/gui/modules/widget_elements/widget_element_frame.c
+++ b/applications/gui/modules/widget_elements/widget_element_frame.c
@@ -29,7 +29,7 @@ WidgetElement* widget_element_frame_create(
uint8_t height,
uint8_t radius) {
// Allocate and init model
- GuiFrameModel* model = furi_alloc(sizeof(GuiFrameModel));
+ GuiFrameModel* model = malloc(sizeof(GuiFrameModel));
model->x = x;
model->y = y;
model->width = width;
@@ -37,7 +37,7 @@ WidgetElement* widget_element_frame_create(
model->radius = radius;
// Allocate and init Element
- WidgetElement* gui_frame = furi_alloc(sizeof(WidgetElement));
+ WidgetElement* gui_frame = malloc(sizeof(WidgetElement));
gui_frame->parent = NULL;
gui_frame->input = NULL;
gui_frame->draw = gui_frame_draw;