| 145 | } |
| 146 | |
| 147 | void SimpleTextDrawer::SetFont(Font* font) |
| 148 | { |
| 149 | if (m_font != font) |
| 150 | { |
| 151 | m_font = font; |
| 152 | |
| 153 | if (m_font) |
| 154 | ConnectFontSlots(); |
| 155 | else |
| 156 | DisconnectFontSlots(); |
| 157 | |
| 158 | m_glyphUpdated = false; |
| 159 | } |
| 160 | } |
| 161 | |
| 162 | void SimpleTextDrawer::SetStyle(UInt32 style) |
| 163 | { |
no outgoing calls
no test coverage detected