aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrederic Culot <calcurse@culot.org>2007-07-23 19:27:28 +0000
committerFrederic Culot <calcurse@culot.org>2007-07-23 19:27:28 +0000
commit6ad12276c41958e6fdc2213c79d193987f1f39bb (patch)
tree3a25ed5cc4aed3a7abaa4ca49aad17ce80a6cbe1
parentab0cc2c6065f758f323b177674f020b6be7296e9 (diff)
downloadcalcurse-6ad12276c41958e6fdc2213c79d193987f1f39bb.tar.gz
calcurse-6ad12276c41958e6fdc2213c79d193987f1f39bb.zip
window_e enum and window_t type moved to wins.h
-rwxr-xr-xsrc/vars.h19
1 files changed, 1 insertions, 18 deletions
diff --git a/src/vars.h b/src/vars.h
index 0eaa170..f7c2262 100755
--- a/src/vars.h
+++ b/src/vars.h
@@ -1,4 +1,4 @@
-/* $calcurse: vars.h,v 1.13 2007/07/21 19:30:25 culot Exp $ */
+/* $calcurse: vars.h,v 1.14 2007/07/23 19:27:28 culot Exp $ */
/*
* Calcurse - text-based organizer
@@ -53,15 +53,6 @@
#define STATUSHEIGHT 2
-enum window_e {
- CALENDAR,
- APPOINTMENT,
- TODO,
- NOTIFY,
- STATUS,
- NBWINS
-};
-
struct pad_s {
int width;
int length;
@@ -90,14 +81,6 @@ typedef struct {
int layout;
} conf_t;
-/* Window properties */
-typedef struct {
- unsigned w; /* width */
- unsigned h; /* height */
- int x; /* x position */
- int y; /* y position */
-} window_t;
-
extern int col, row;
extern bool colorize;
extern int days[12];