summaryrefslogtreecommitdiffstats
path: root/window.c
diff options
context:
space:
mode:
authorBert <ber.t@gmx.com>2011-07-22 14:49:06 +0200
committerBert <ber.t@gmx.com>2011-07-22 14:49:06 +0200
commita271e167443aedca2ed9c28b51fc6de33692dadb (patch)
tree01d2e58d2aa579de2abf8e609612721eb4a7b7dd /window.c
parent5f780fc3e77aef1f1b87fdd6662a7caee6efbc3b (diff)
downloadnsxiv-a271e167443aedca2ed9c28b51fc6de33692dadb.tar.zst
Reduced usage of preprocessor macros
Diffstat (limited to 'window.c')
-rw-r--r--window.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/window.c b/window.c
index 68ef24f..7508641 100644
--- a/window.c
+++ b/window.c
@@ -21,10 +21,10 @@
#include <X11/Xutil.h>
#include <X11/cursorfont.h>
-#include "config.h"
#include "options.h"
#include "util.h"
#include "window.h"
+#include "config.h"
static Cursor carrow;
static Cursor cnone;
@@ -312,7 +312,7 @@ void win_set_title(win_t *win, const char *title) {
PropModeReplace, (unsigned char *) title, strlen(title));
}
-void win_set_cursor(win_t *win, win_cur_t cursor) {
+void win_set_cursor(win_t *win, cursor_t cursor) {
if (!win || !win->xwin)
return;