summaryrefslogtreecommitdiff
path: root/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/FilterOptions.java
diff options
context:
space:
mode:
authorAndras Timar <andras.timar@collabora.com>2013-09-26 11:44:54 +0200
committerAndras Timar <andras.timar@collabora.com>2013-09-26 11:47:45 +0200
commit7f436c1fd3a5f879fc99652043befb35158b3321 (patch)
treefb7afa124abc55dba2c9d17f4fa10a593485febf /odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/FilterOptions.java
parent69c4a8bae5caadc4ff53660dd3f2b938f6dc1734 (diff)
typo fixes in comments
Change-Id: Iaadec33715f8e0e0c6595c5e684606905274fdab
Diffstat (limited to 'odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/FilterOptions.java')
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/FilterOptions.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/FilterOptions.java b/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/FilterOptions.java
index bec6966999c2..1a94bd72ab58 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/FilterOptions.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/FilterOptions.java
@@ -48,7 +48,7 @@ import com.sun.star.uno.UnoRuntime;
@attention This class mustn't be threadsafe - because instances of it
are used temp. only - not as members. So no concurrent access
- should occure.
+ should occur.
Another reason: It wuold be very difficult to safe every
access on our internal member. To do so - we must implement
special methods instead of allowing pure member access.
@@ -154,7 +154,7 @@ public class FilterOptions
if (lFilterProps[p].Name.equals("LowerCase"))
{
m_bLower = AnyConverter.toBoolean(lFilterProps[p].Value);
- m_bCaseChange = true; // Set it after m_bLower - because an exception can occure and we must use default values then!
+ m_bCaseChange = true; // Set it after m_bLower - because an exception can occur and we must use default values then!
}
}
}
@@ -164,7 +164,7 @@ public class FilterOptions
// ONE argument has the wrong type
// But I think we mustn't react here - because we setted
// default values for every necessary item we need.
- // In case this exception occures - this default exist
+ // In case this exception occurs - this default exist
// and we can live with it.
}
}