diff options
author | Christopher Jeffrey <chjjeffrey@gmail.com> | 2014-01-02 12:33:57 -0600 |
---|---|---|
committer | Christopher Jeffrey <chjjeffrey@gmail.com> | 2014-01-02 12:33:57 -0600 |
commit | 978dde64920e0e2357225cf0ca6e8865a44c7d7e (patch) | |
tree | 4741ff68f93b7718d73bd4069142a9555f25ce85 /common.h | |
parent | 44a13b4e767eef1985a4a34723b7cc279e1dc160 (diff) | |
download | tdebase-978dde64920e0e2357225cf0ca6e8865a44c7d7e.tar.gz tdebase-978dde64920e0e2357225cf0ca6e8865a44c7d7e.zip |
Fix typo: s/hybird/hybrid/
Diffstat (limited to 'common.h')
-rw-r--r-- | common.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -323,7 +323,7 @@ typedef enum { enum backend { BKEND_XRENDER, BKEND_GLX, - BKEND_XR_GLX_HYBIRD, + BKEND_XR_GLX_HYBRID, NUM_BKEND, }; @@ -1720,7 +1720,7 @@ find_toplevel(session_t *ps, Window id) { static inline bool bkend_use_xrender(session_t *ps) { return BKEND_XRENDER == ps->o.backend - || BKEND_XR_GLX_HYBIRD == ps->o.backend; + || BKEND_XR_GLX_HYBRID == ps->o.backend; } /** @@ -1729,7 +1729,7 @@ bkend_use_xrender(session_t *ps) { static inline bool bkend_use_glx(session_t *ps) { return BKEND_GLX == ps->o.backend - || BKEND_XR_GLX_HYBIRD == ps->o.backend; + || BKEND_XR_GLX_HYBRID == ps->o.backend; } /** |