diff options
author | okan | 2011-06-24 06:52:23 +0000 |
---|---|---|
committer | okan | 2011-06-24 06:52:23 +0000 |
commit | 3e6eeaaf087fe881587a1a4a685fb1e460e76914 (patch) | |
tree | 3be61b609e2b233e01e19ac5af16febb3d98d4d5 /calmwm.h | |
parent | feff015aa1ac96d5c2ef8cc9b6413f4aa8ed2b8a (diff) | |
download | cwm-3e6eeaaf087fe881587a1a4a685fb1e460e76914.tar.gz |
add 'normal' cursor and shuffle the others we use to make a bit more
sense and to be slightly less un-expected. from Alexander Polakov.
re-use 'normal' cursor now instead XC_hand1 for menu selection. i
really wish X had real docs and made sense.
ok on earlier diff with '?' removed (but it's back now) oga@
Diffstat (limited to '')
-rw-r--r-- | calmwm.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: calmwm.h,v 1.132 2011/06/24 06:09:26 okan Exp $ + * $OpenBSD: calmwm.h,v 1.133 2011/06/24 06:52:23 okan Exp $ */ #ifndef _CALMWM_H_ @@ -473,11 +473,11 @@ char *xstrdup(const char *); /* Externs */ extern Display *X_Dpy; -extern Cursor Cursor_move; -extern Cursor Cursor_resize; -extern Cursor Cursor_select; extern Cursor Cursor_default; +extern Cursor Cursor_move; +extern Cursor Cursor_normal; extern Cursor Cursor_question; +extern Cursor Cursor_resize; extern struct screen_ctx_q Screenq; extern struct client_ctx_q Clientq; |