From 537ab38985d87af121df15a55f95017b15c481bc Mon Sep 17 00:00:00 2001 From: Marc Zinnschlag Date: Fri, 23 Aug 2013 14:49:41 +0200 Subject: [PATCH] fixed type in error message --- apps/opencs/model/filter/textnode.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/opencs/model/filter/textnode.cpp b/apps/opencs/model/filter/textnode.cpp index ec654267bf..9987c66d22 100644 --- a/apps/opencs/model/filter/textnode.cpp +++ b/apps/opencs/model/filter/textnode.cpp @@ -19,7 +19,7 @@ bool CSMFilter::TextNode::test (const CSMWorld::IdTable& table, int row, const std::map::const_iterator iter = columns.find (mColumnId); if (iter==columns.end()) - throw std::logic_error ("invalid column in test node test"); + throw std::logic_error ("invalid column in text node test"); if (iter->second==-1) return true;