mirror of
https://github.com/labwc/labwc.git
synced 2026-02-07 04:07:42 -05:00
common/buf: rename buf->buf to buf->data
This commit is contained in:
parent
fccc6a2922
commit
a8f98cb90b
10 changed files with 33 additions and 33 deletions
|
|
@ -290,7 +290,7 @@ button_xbm_load(const char *button_name, struct lab_data_buffer **buffer,
|
|||
button_filename(button_name, filename, sizeof(filename));
|
||||
struct buf token_buf = grab_file(filename);
|
||||
if (token_buf.len) {
|
||||
struct token *tokens = tokenize_xbm(token_buf.buf);
|
||||
struct token *tokens = tokenize_xbm(token_buf.data);
|
||||
pixmap = parse_xbm_tokens(tokens);
|
||||
if (tokens) {
|
||||
free(tokens);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue