summaryrefslogtreecommitdiff
path: root/wizards
diff options
context:
space:
mode:
authorXisco Fauli <anistenis@gmail.com>2012-10-11 21:36:00 +0200
committerXisco Fauli <anistenis@gmail.com>2012-10-11 21:36:50 +0200
commitc043062913167ef2dece0fc243a90bb86c32868e (patch)
tree7f74a19b039528d6bcde34eeda45817d338bbabe /wizards
parentdf99bb3d0de567fa34f7f6edfca4f736abb0efa2 (diff)
pywizards: This code does nothing but an exception. Delete it
Change-Id: If35b68073210d7da368a96623853c3d68d8425b5
Diffstat (limited to 'wizards')
-rw-r--r--wizards/com/sun/star/wizards/text/TextDocument.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/wizards/com/sun/star/wizards/text/TextDocument.py b/wizards/com/sun/star/wizards/text/TextDocument.py
index 2dea2ceb3899..6570aa4387f6 100644
--- a/wizards/com/sun/star/wizards/text/TextDocument.py
+++ b/wizards/com/sun/star/wizards/text/TextDocument.py
@@ -139,13 +139,6 @@ class TextDocument(object):
'com.sun.star.beans.PropertyValue')
loadValues[2].Name = "Preview"
loadValues[2].Value = True
- '''set the preview document to non-modified
- mode in order to avoid the 'do u want to save' box'''
- if TextDocument.xTextDocument is not None:
- try:
- TextDocument.xTextDocument.Modified = False
- except PropertyVetoException, e1:
- traceback.print_exc()
TextDocument.xTextDocument = OfficeDocument.load(
self.xFrame, sDefaultTemplate, "_self", loadValues)