Renamed widget builder functions to be more consistent with the rest of wofi

This commit is contained in:
Scoopta
2020-07-11 16:39:09 -07:00
parent 2df1705673
commit ad73f24c75
5 changed files with 9 additions and 9 deletions

View File

@@ -179,9 +179,9 @@ static struct widget_builder* populate_actions(char* file, size_t* text_count) {
++*text_count;
struct widget_builder* builder = wofi_create_widget_builder(mode, *text_count);
struct widget_builder* builder = wofi_widget_builder_init(mode, *text_count);
if(!populate_widget(file, NULL, builder)) {
wofi_free_widget_builder(builder);
wofi_widget_builder_free(builder);
return NULL;
}