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