Remove debug code

This commit is contained in:
Veronica K. B. Olsen
2019-11-01 19:32:35 +01:00
parent f823367917
commit bc105c1f71
+1 -15
View File
@@ -117,18 +117,6 @@ class GuiDocViewer(QTextBrowser):
self.theHandle = tHandle
self.theProject.setLastViewed(tHandle)
print("")
print("*"*140)
print("")
print(aDoc.theResult)
print("")
print("*"*140)
print("")
print(self.toHtml())
print("")
print("*"*140)
print("")
self.theParent.docMeta.refreshReferences(tHandle)
return True
@@ -183,8 +171,8 @@ class GuiDocViewer(QTextBrowser):
styleSheet = (
"body {{"
" font-size: {textSize:.1f}pt;"
" color: rgb({tColR},{tColG},{tColB});"
" font-size: {textSize:.1f}pt;"
"}}\n"
"h1, h2, h3, h4 {{"
" color: rgb({hColR},{hColG},{hColB});"
@@ -233,8 +221,6 @@ class GuiDocViewer(QTextBrowser):
)
self.qDocument.setDefaultStyleSheet(styleSheet)
print(styleSheet)
return True
# END Class GuiDocViewer