svn: r8445

This commit is contained in:
Don Allingham 2007-05-08 04:35:14 +00:00
parent 7b7abd95dd
commit b884474407
3 changed files with 6 additions and 9 deletions

View File

@ -557,14 +557,14 @@ class ParagraphStyle:
using the values of the source instead of the default values.
"""
if source:
self.font = FontStyle(source.font)
self.font = FontStyle(source.font)
self.rmargin = source.rmargin
self.lmargin = source.lmargin
self.first_indent = source.first_indent
self.tmargin = source.tmargin
self.bmargin = source.bmargin
self.align = source.align
self.level = source.level
self.align = source.align
self.level = source.level
self.top_border = source.top_border
self.bottom_border = source.bottom_border
self.right_border = source.right_border
@ -574,14 +574,14 @@ class ParagraphStyle:
self.description = source.description
self.tabs = source.tabs
else:
self.font = FontStyle()
self.font = FontStyle()
self.rmargin = 0
self.lmargin = 0
self.tmargin = 0
self.bmargin = 0
self.first_indent = 0
self.align = PARA_ALIGN_LEFT
self.level = 0
self.align = PARA_ALIGN_LEFT
self.level = 0
self.top_border = 0
self.bottom_border = 0
self.right_border = 0

View File

@ -468,7 +468,6 @@ class BareReportDialog(ManagedWindow.ManagedWindow):
if self.HELP_TOPIC:
import GrampsDisplay
GrampsDisplay.help(self.HELP_TOPIC)
print "HELP CLICKED"
def on_ok_clicked(self, obj):
"""The user is satisfied with the dialog choices. Parse all options

View File

@ -88,10 +88,8 @@ class TextBufDoc(BaseDoc.BaseDoc, BaseDoc.TextDoc):
self.tag_table = gtk.TextTagTable()
sheet = self.get_style_sheet()
print sheet
for name in sheet.get_paragraph_style_names():
print name
tag = gtk.TextTag(name)
style = sheet.get_paragraph_style(name)