Index: trunk/src/search.c =================================================================== --- trunk/src/search.c (revision 17777) +++ trunk/src/search.c (revision 17778) @@ -1037,7 +1037,7 @@ double ang, dx, dy; pcb_coord_t ax, ay, d; -#warning TODO: elliptical arc: rewrite this as it doesn't work properly on extreme cases +#warning TODO: elliptical arc: rewrite this, as it does not work properly on extreme cases dy = (double)(Y - Arc->Y) / (double)Arc->Height; dx = (double)(X - Arc->X) / (double)Arc->Width; ang = -atan2(dy, dx); Index: trunk/src_plugins/io_eagle/read.c =================================================================== --- trunk/src_plugins/io_eagle/read.c (revision 17777) +++ trunk/src_plugins/io_eagle/read.c (revision 17778) @@ -964,7 +964,7 @@ pcb_attribute_put(&subc->Attributes, "footprint", eagle_get_attrs(st, n, "package", NULL)); pcb_subc_bbox(subc); -#warning subc TODO: revise this: are we loading an instance here? do we need to place it? don't even bump if not! +#warning subc TODO: revise this: are we loading an instance here? do we need to place it? do not even bump if not! if (st->pcb->Data->subc_tree == NULL) st->pcb->Data->subc_tree = pcb_r_create_tree(); pcb_r_insert_entry(st->pcb->Data->subc_tree, (pcb_box_t *)subc); Index: trunk/src_plugins/io_kicad/read.c =================================================================== --- trunk/src_plugins/io_kicad/read.c (revision 17777) +++ trunk/src_plugins/io_kicad/read.c (revision 17778) @@ -1908,7 +1908,7 @@ } } else if (m->str != NULL && strcmp("layers", m->str) == 0) { -#warning TODO: rather pass this subtree directly to the shape generator code so it doesn't need to guess the layers +#warning TODO: rather pass this subtree directly to the shape generator code so it does not need to guess the layers if (SMD) { /* skip testing for pins */ SEEN_NO_DUP(featureTally, 2); smd_side = 0; Index: trunk/src_plugins/io_kicad/write.c =================================================================== --- trunk/src_plugins/io_kicad/write.c (revision 17777) +++ trunk/src_plugins/io_kicad/write.c (revision 17778) @@ -698,7 +698,7 @@ } #warning TODO: we should probably do unm_name() on the refdes, not on footprint-name? -#warning TODO: the unique name makes no sense if we override it with unknown - if the unique name is NULL, it's more likely a save-incompatibility error +#warning TODO: the unique name makes no sense if we override it with unknown - if the unique name is NULL, it is more likely a save-incompatibility error currentElementName = unm_name(&group1, pcb_attribute_get(&subc->Attributes, "footprint"), subc); if (currentElementName == NULL) { currentElementName = "unknown"; Index: trunk/src_plugins/io_kicad_legacy/write.c =================================================================== --- trunk/src_plugins/io_kicad_legacy/write.c (revision 17777) +++ trunk/src_plugins/io_kicad_legacy/write.c (revision 17778) @@ -655,7 +655,7 @@ return -1; } -#warning TODO: don't hardwire dates +#warning TODO: no hardwiring of dates fputs("PCBNEW-LibModule-V1 jan 01 jan 2016 00:00:01 CET\n", FP); fputs("Units mm\n", FP); fputs("$INDEX\n", FP);