(self, args)
| 436 | self._curSlide.outlineEntry = None |
| 437 | |
| 438 | def start_para(self, args): |
| 439 | self.pack_slide('para', args) |
| 440 | self._curPara = pythonpoint.PPPara() |
| 441 | self._curPara.style = self._arg('para',args,'style') |
| 442 | |
| 443 | # hack - bullet character if bullet style |
| 444 | bt = self._arg('para',args,'bullettext') |
| 445 | if bt == '': |
| 446 | if self._curPara.style == 'Bullet': |
| 447 | bt = '\xe2\x80\xa2' # Symbol Font bullet character, reasonable default |
| 448 | elif self._curPara.style == 'Bullet2': |
| 449 | bt = '\xe2\x80\xa2' # second-level bullet |
| 450 | else: |
| 451 | bt = None |
| 452 | |
| 453 | self._curPara.bulletText = bt |
| 454 | |
| 455 | def end_para(self): |
| 456 | if self._curFrame: |
nothing calls this directly
no test coverage detected