From 25d3c618d831036c08194610f188e4781c135cfc Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Wed, 25 Mar 2015 21:12:16 +0100 Subject: Typo: formated->formatted Change-Id: Iefd4d375a0dfb36732233852f906c6b85dccc2a5 --- odk/examples/java/Text/HardFormatting.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'odk/examples/java') diff --git a/odk/examples/java/Text/HardFormatting.java b/odk/examples/java/Text/HardFormatting.java index 559c9b98fb16..4b00ad333945 100644 --- a/odk/examples/java/Text/HardFormatting.java +++ b/odk/examples/java/Text/HardFormatting.java @@ -130,7 +130,7 @@ public class HardFormatting { + xPropertySet.getPropertyValue("CharWeight").toString() ); // the PropertyState contains information where the attribute is set, - // is a text part hard formated or not. + // is a text part hard formatted or not. com.sun.star.beans.XPropertyState xPropertyState = null; xPropertyState = UnoRuntime.queryInterface( com.sun.star.beans.XPropertyState.class, xWordCursor); @@ -175,21 +175,21 @@ public class HardFormatting { case com.sun.star.beans.PropertyState.DIRECT_VALUE_value: { System.out.println( "-> The selection '" + xWordCursor.getString() - + "' completely hard formated" ); + + "' completely hard formatted" ); break; } case com.sun.star.beans.PropertyState.DEFAULT_VALUE_value: { System.out.println( "-> The selection '" + xWordCursor.getString() - + "' isn't hard formated" ); + + "' isn't hard formatted" ); break; } case com.sun.star.beans.PropertyState.AMBIGUOUS_VALUE_value: { System.out.println( "-> The selection '" + xWordCursor.getString() - + "' isn't completely hard formated" ); + + "' isn't completely hard formatted" ); break; } -- cgit