Make g_x11_xim and g_x11_xic both static

This commit is contained in:
twinaphex 2015-11-19 11:28:41 +01:00
parent ce2b973beb
commit 268570a108
2 changed files with 2 additions and 4 deletions

View File

@ -34,8 +34,8 @@ Atom g_x11_quit_atom;
static volatile sig_atomic_t g_x11_quit;
bool g_x11_has_focus;
Window g_x11_win;
XIM g_x11_xim;
XIC g_x11_xic;
static XIM g_x11_xim;
static XIC g_x11_xic;
Display *g_x11_dpy;
bool g_x11_true_full;

View File

@ -38,8 +38,6 @@
extern Atom g_x11_quit_atom;
extern bool g_x11_has_focus;
extern Window g_x11_win;
extern XIC g_x11_xic;
extern XIM g_x11_xim;
extern Display *g_x11_dpy;
extern bool g_x11_true_full;