mirror of
https://github.com/labwc/labwc.git
synced 2026-04-08 08:21:09 -04:00
string-helpers.c: add string_empty()
This commit is contained in:
parent
8c9be2f0d1
commit
c066821046
9 changed files with 27 additions and 14 deletions
|
|
@ -12,6 +12,7 @@
|
|||
#include "buffer.h"
|
||||
#include "button/button-png.h"
|
||||
#include "button/common.h"
|
||||
#include "common/string-helpers.h"
|
||||
#include "labwc.h"
|
||||
|
||||
/*
|
||||
|
|
@ -49,7 +50,7 @@ button_png_load(const char *button_name, struct lab_data_buffer **buffer)
|
|||
wlr_buffer_drop(&(*buffer)->base);
|
||||
*buffer = NULL;
|
||||
}
|
||||
if (!button_name || !*button_name) {
|
||||
if (string_null_or_empty(button_name)) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue