Skip to content
Snippets Groups Projects
Commit 3ac40ea6 authored by felmer's avatar felmer
Browse files

LMS-1782 spelling error fixed

SVN: 18330
parent 2a643ace
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
......@@ -543,7 +543,7 @@ public class WellSearchGrid extends TypedTableGrid<WellContent>
}
@Override
protected String translateColumnIdToDictonaryKey(String columnID)
protected String translateColumnIdToDictionaryKey(String columnID)
{
return columnID;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment