mirror of
https://github.com/0intro/wmii
synced 2024-11-22 05:42:05 +03:00
Fix randomly reverted files.
This commit is contained in:
parent
5a078dfe24
commit
fb1d7443a1
@ -4,6 +4,6 @@
|
||||
#include "../x11.h"
|
||||
|
||||
void
|
||||
changeprop_char(Window *w, const char *prop, const char *type, char data[], int len) {
|
||||
changeproperty(w, prop, type, 8, (uchar*)data, len);
|
||||
changeprop_char(Window *w, const char *prop, const char *type, const char data[], int len) {
|
||||
changeproperty(w, prop, type, 8, (const uchar*)data, len);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "../x11.h"
|
||||
|
||||
int
|
||||
getprop_textlist(Window *w, char *name, char **ret[]) {
|
||||
getprop_textlist(Window *w, const char *name, char **ret[]) {
|
||||
XTextProperty prop;
|
||||
char **list;
|
||||
int n;
|
||||
|
Loading…
Reference in New Issue
Block a user