Author: damjan
Date: Thu Oct 4 18:17:45 2018
New Revision: 1842837
URL: http://svn.apache.org/viewvc?rev=1842837&view=rev
Log:
Fix a main/pyuno typo ("tranient" instead of "transient") as per i#113302.
A big thank you to the reporter.
Patch by: me
Modified:
openoffice/trunk/main/pyuno/source/module/unohelper.py
Modified: openoffice/trunk/main/pyuno/source/module/unohelper.py
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/pyuno/source/module/unohelper.py?rev=1842837&r1=1842836&r2=1842837&view=diff
==============================================================================
--- openoffice/trunk/main/pyuno/source/module/unohelper.py (original)
+++ openoffice/trunk/main/pyuno/source/module/unohelper.py Thu Oct 4 18:17:45
2018
@@ -64,7 +64,7 @@ def _propertymode_to_str( mode ):
if PROP_ATTR_READONLY & mode:
ret = ret + "readonly "
if PROP_ATTR_TRANSIENT & mode:
- ret = ret + "tranient "
+ ret = ret + "transient "
if PROP_ATTR_CONSTRAINED & mode:
ret = ret + "constrained "
if PROP_ATTR_BOUND & mode: