summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-12-21 14:53:36 +0000
committerDana Jansens <danakj@orodu.net>2002-12-21 14:53:36 +0000
commit57fec1aba539f195df2ded93d8c5c7f02c146619 (patch)
treea6955776ec0bf76ae8d033773c7ca2bab53b0354
parent55b2aaf973063796a668bc758232141c3d6f5cc9 (diff)
typesafety
-rw-r--r--otk_c/screeninfo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/otk_c/screeninfo.h b/otk_c/screeninfo.h
index 1a4aaea0..745d62ad 100644
--- a/otk_c/screeninfo.h
+++ b/otk_c/screeninfo.h
@@ -1,4 +1,4 @@
-// -*- mode: C; indent-tabs-mode: nil; -*-
+// -*- mode: C; indent-tabs-mode: nil; c-basic-offset: 2; -*-
#ifndef __screeninfo_h
#define __screeninfo_h
@@ -20,7 +20,7 @@ typedef struct OtkScreenInfo {
PyStringObject *display_string;
struct OtkRect *rect; // OtkRect
#ifdef XINERAMA
- PyObject *xinerama_areas; // PyListObject[OtkRect]
+ PyListObject *xinerama_areas; // holds OtkRect's
Bool xinerama_active;
#endif
} OtkScreenInfo;