changeset 9526:72c7286337c9 octave-forge

Layout; copyright string updated
author prnienhuis
date Mon, 27 Feb 2012 19:30:04 +0000
parents 0489a048e6ab
children f133332275bf
files main/io/inst/spsh_chkrange.m
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/main/io/inst/spsh_chkrange.m	Mon Feb 27 19:28:40 2012 +0000
+++ b/main/io/inst/spsh_chkrange.m	Mon Feb 27 19:30:04 2012 +0000
@@ -1,4 +1,4 @@
-## Copyright (C) 2010,2011 Philip Nienhuis <prnienhuis@users.sf.net>
+## Copyright (C) 2010,2011,2012 Philip Nienhuis <prnienhuis@users.sf.net>
 ## 
 ## This program is free software; you can redistribute it and/or modify
 ## it under the terms of the GNU General Public License as published by
@@ -71,7 +71,7 @@
 		case { 'UNO' }
 			# ODS; LibreOffice has a higher row capacity
 			# FIXME - use UNO calls to check physical row capacity
-      # FIXME - LibreOffice has higher row capacity but it's Java classes haven't been updated
+      # FIXME - LibreOffice has higher row capacity but its Java classes haven't been updated
 			ROW_CAP = 1048576;   COL_CAP = 1024;
 		otherwise
 			error (sprintf ("Unknown interface type - %s\n", xtype));
@@ -82,7 +82,7 @@
 		lcol = 1;
 		nrows = nr;
 		ncols = nc;
-		topleft= 'A1';
+		topleft = 'A1';
 	elseif (isempty (strfind (deblank (crange), ':')))
 		# Only top left cell specified
 		[topleft, dummy1, dummy2, trow, lcol] = parse_sp_range (crange);