| 168 | } |
| 169 | |
| 170 | bool |
| 171 | LineStyleInfo::is_bit_set (unsigned int n) const |
| 172 | { |
| 173 | return (pattern () [(n / 32) % pattern_stride ()] & (1 << (n % 32))) != 0; |
| 174 | } |
| 175 | |
| 176 | #if defined(HAVE_QT) |
| 177 | QBitmap |
nothing calls this directly
no test coverage detected