From 3ac40ea6669915f5ca1a496431792929a0f116c4 Mon Sep 17 00:00:00 2001
From: felmer <felmer>
Date: Mon, 18 Oct 2010 07:53:00 +0000
Subject: [PATCH] LMS-1782 spelling error fixed

SVN: 18330
---
 .../client/web/client/application/ui/TypedTableGrid.java      | 4 ++--
 .../web/client/application/detailviewers/WellSearchGrid.java  | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/TypedTableGrid.java b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/TypedTableGrid.java
index 59d6bd2beac..05d0e7d8558 100644
--- a/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/TypedTableGrid.java
+++ b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/TypedTableGrid.java
@@ -190,7 +190,7 @@ public abstract class TypedTableGrid<T extends IsSerializable>
                 String title = header.getTitle();
                 if (title == null)
                 {
-                    title = viewContext.getMessage(translateColumnIdToDictonaryKey(header.getId()));
+                    title = viewContext.getMessage(translateColumnIdToDictionaryKey(header.getId()));
                 }
                 ICellListenerAndLinkGenerator<T> linkGeneratorOrNull =
                         listenerLinkGenerators.get(header.getId());
@@ -217,7 +217,7 @@ public abstract class TypedTableGrid<T extends IsSerializable>
      * 
      * @return <code>getId() + "_" + columnID</code>
      */
-    protected String translateColumnIdToDictonaryKey(String columnID)
+    protected String translateColumnIdToDictionaryKey(String columnID)
     {
         return getId() + "_" + columnID;
     }
diff --git a/screening/source/java/ch/systemsx/cisd/openbis/plugin/screening/client/web/client/application/detailviewers/WellSearchGrid.java b/screening/source/java/ch/systemsx/cisd/openbis/plugin/screening/client/web/client/application/detailviewers/WellSearchGrid.java
index 9ef3d0a801a..be86515cb8f 100644
--- a/screening/source/java/ch/systemsx/cisd/openbis/plugin/screening/client/web/client/application/detailviewers/WellSearchGrid.java
+++ b/screening/source/java/ch/systemsx/cisd/openbis/plugin/screening/client/web/client/application/detailviewers/WellSearchGrid.java
@@ -543,7 +543,7 @@ public class WellSearchGrid extends TypedTableGrid<WellContent>
     }
 
     @Override
-    protected String translateColumnIdToDictonaryKey(String columnID)
+    protected String translateColumnIdToDictionaryKey(String columnID)
     {
         return columnID;
     }
-- 
GitLab