| 115 | void adjust(int8_t nfg, bool nbold, int8_t nbg) { adjust(nfg, nbold); bg = nbg; } |
| 116 | |
| 117 | Pen color(int8_t nfg) const { Pen cp(*this); cp.adjust(nfg); return cp; } |
| 118 | Pen color(int8_t nfg, bool nbold) const { Pen cp(*this); cp.adjust(nfg, nbold); return cp; } |
| 119 | Pen color(int8_t nfg, int8_t nbg) const { Pen cp(*this); cp.adjust(nfg, nbg); return cp; } |
| 120 | Pen color(int8_t nfg, bool nbold, int8_t nbg) const { Pen cp(*this); cp.adjust(nfg, nbold, nbg); return cp; } |
no test coverage detected