Hi,
I declared a variable h of type QHash<const char *,const char *>.
I called h.insert("foo","bar")
then I test to see if h.contains("foo") returns true. It does. However I have another case where
I use a variable that points to a string s identical to foo in content and i call
h.insert(s,"baz")
this time h.contains("foo") returns false.
Any suggestions?