Skip to content

Commit 3837df1

Browse files
committed
Qt build
1 parent 9c422f2 commit 3837df1

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

include/decl.h

+4
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ E char SAVEF[];
2525
E char SAVEP[];
2626
#endif
2727

28+
/* max size of a windowtype option */
29+
#define WINTYPELEN 16
30+
E char chosen_windowtype[WINTYPELEN];
31+
2832
E NEARDATA int bases[MAXOCLASSES];
2933

3034
E NEARDATA int multi;

include/flag.h

-4
Original file line numberDiff line numberDiff line change
@@ -221,10 +221,6 @@ enum getloc_filters {
221221
NUM_GFILTER
222222
};
223223

224-
/* max size of a windowtype option */
225-
#define WINTYPELEN 16
226-
char chosen_windowtype[WINTYPELEN];
227-
228224
struct debug_flags {
229225
boolean test;
230226
#ifdef TTY_GRAPHICS

src/decl.c

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ int locknum = 0; /* max num of simultaneous users */
1717
#ifdef DEF_PAGER
1818
char *catmore = 0; /* default pager */
1919
#endif
20+
char chosen_windowtype[WINTYPELEN];
2021

2122
NEARDATA int bases[MAXOCLASSES] = DUMMY;
2223

0 commit comments

Comments
 (0)