This commit is contained in:
Kovid Goyal 2012-12-15 22:10:41 +05:30
parent bd3ca9a0cc
commit c74ed9e887

View File

@ -271,12 +271,10 @@ class PdfEngine(QPaintEngine):
return QPaintEngine.Pdf return QPaintEngine.Pdf
def drawPixmap(self, rect, pixmap, source_rect): def drawPixmap(self, rect, pixmap, source_rect):
print ('drawPixmap() currently unimplemented') print ('TODO: drawPixmap() currently unimplemented')
pass # TODO: Implement me
def drawImage(self, rect, image, source_rect, flags=Qt.AutoColor): def drawImage(self, rect, image, source_rect, flags=Qt.AutoColor):
print ('drawImage() currently unimplemented') print ('TODO: drawImage() currently unimplemented')
pass # TODO: Implement me
def updateState(self, state): def updateState(self, state):
self.graphics_state.read(state) self.graphics_state.read(state)