Moved test data set into an #if block
This makes testing a bit easier, only the #if 1 line has to be modified
This commit is contained in:
parent
49a752fafa
commit
3fc05c926e
14
src/gradix.c
14
src/gradix.c
@ -212,12 +212,14 @@ main(int argc, char *argv[])
|
|||||||
#error "You need Clutter >= 1.3.6 to compile this software"
|
#error "You need Clutter >= 1.3.6 to compile this software"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int year = 1983,
|
#if 1
|
||||||
month = 3,
|
year = 1983;
|
||||||
day = 7,
|
month = 3;
|
||||||
hour = 11,
|
day = 7;
|
||||||
min = 54,
|
hour = 11;
|
||||||
sec = 45;
|
min = 54;
|
||||||
|
#endif
|
||||||
|
|
||||||
double timezone = 1.0,
|
double timezone = 1.0,
|
||||||
lon = 19.081599,
|
lon = 19.081599,
|
||||||
lat = 47.462485,
|
lat = 47.462485,
|
||||||
|
Loading…
Reference in New Issue
Block a user