Revision: 1986
Author:
chrsc...@googlemail.com
Date: Fri Jun 21 06:34:49 2013
Log: Fixed list of supported filters for VariableFilter.
http://code.google.com/p/insight-vmi/source/detail?r=1986
Modified:
/trunk/libinsight/typefilter.cpp
=======================================
--- /trunk/libinsight/typefilter.cpp Fri Jun 21 06:03:45 2013
+++ /trunk/libinsight/typefilter.cpp Fri Jun 21 06:34:49 2013
@@ -1060,8 +1060,9 @@
static KeyValueStore varFilters;
if (varFilters.isEmpty()) {
varFilters = FunctionFilter::supportedFilters();
- varFilters[xml::filename] = "Match symbol file the variable
belongs to, "
- "e.g. \"vmlinux\" or \"snd.ko\".";
+ varFilters[xml::variablename] = "Match variable name, either by a "
+ "literal match, by a wildcard expression *glob*, or by a "
+ "regular expression /re/.";
}
return varFilters;
}