diff options
author | Javier Fernandez <jfernandez@igalia.com> | 2013-05-04 11:23:35 +0000 |
---|---|---|
committer | Javier Fernandez <jfernandez@igalia.com> | 2013-05-08 09:36:40 +0000 |
commit | 0170bb1e7803359439a3c238e1e336d5a9bf6d64 (patch) | |
tree | af257e78ba4ca660b123bfca64ed884d71a04f63 /wizards | |
parent | ae2bc91d24b14b5dc90499449e2e2c11f6be6d0f (diff) |
PyWebWizard: Fixing bugs and implementation of mising features.
The document list up/down buttons should use OpenSymbol font.
Change-Id: I9ff7cb9a12ee98bfba4355283a3b9f8aefb0af95
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/com/sun/star/wizards/web/WebWizardDialog.py | 2 | ||||
-rw-r--r-- | wizards/com/sun/star/wizards/web/WebWizardDialogResources.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/wizards/com/sun/star/wizards/web/WebWizardDialog.py b/wizards/com/sun/star/wizards/web/WebWizardDialog.py index bec0f7072659..47a788079f3a 100644 --- a/wizards/com/sun/star/wizards/web/WebWizardDialog.py +++ b/wizards/com/sun/star/wizards/web/WebWizardDialog.py @@ -130,7 +130,7 @@ class WebWizardDialog(WizardDialog): self.fontDescriptor6.StyleName = "Bold Italic" self.fontDescriptor6.Weight = 150 self.fontDescriptor6.Slant = ITALIC - self.fontDescriptor7.Name = "StarSymbol" + self.fontDescriptor7.Name = "OpenSymbol" self.fontDescriptor7.Height = 9 self.fontDescriptor7.StyleName = "Regular" self.fontDescriptor7.Weight = 100 diff --git a/wizards/com/sun/star/wizards/web/WebWizardDialogResources.py b/wizards/com/sun/star/wizards/web/WebWizardDialogResources.py index a8b5e545cced..ea456600b35a 100644 --- a/wizards/com/sun/star/wizards/web/WebWizardDialogResources.py +++ b/wizards/com/sun/star/wizards/web/WebWizardDialogResources.py @@ -31,8 +31,8 @@ class WebWizardDialogResources(Resource): def __init__(self, xmsf): super(WebWizardDialogResources,self).__init__(xmsf, WebWizardDialogResources.MODULE_NAME) - self.resbtnDocUp_value = str(8743) - self.resbtnDocDown_value = str(8744) + self.resbtnDocUp_value = chr(8743) + self.resbtnDocDown_value = chr(8744) #Delete the String, uncomment the getResText method self.resWebWizardDialog_title = self.getResText( |