changeset 9516:e1619bf5c9a5 octave-forge

Added ";" to suppress file name echo in UNO
author prnienhuis
date Sun, 26 Feb 2012 23:38:23 +0000
parents 60807b7f0136
children 9a66a344e0e8
files main/io/inst/odsopen.m
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/main/io/inst/odsopen.m	Sun Feb 26 20:15:00 2012 +0000
+++ b/main/io/inst/odsopen.m	Sun Feb 26 23:38:23 2012 +0000
@@ -90,6 +90,7 @@
 ## 2011-09-03 Reset chkintf if no ods support was found to allow full interface rediscovery
 ##            (otherwise javaclasspath additions will never be picked up)
 ## 2012-01-26 Fixed "seealso" help string
+## 2012-02-26 Added ";" to suppress echo of filename f UNO
 ##
 ## Latest change on subfunctions below: 2011-09-18
 
@@ -267,7 +268,7 @@
 				tmp(1:2:2*flen) = '/';
 				fname = [ tmp{:} ];
 			endif
-			filename = [ 'file://' fname ]
+			filename = [ 'file://' fname ];
 		endif
 		try
 			xContext = java_invoke ("com.sun.star.comp.helper.Bootstrap", "bootstrap");