Hi ,

How can I create a caseinsensitive qstringlist?

Qt Code:
  1. QStringList sl(...) ; //suppose it is case insensitive
  2.  
  3.  
  4. sl<<"hello";
  5. sl<<"Hello";
  6. sl<<"HELLO";
To copy to clipboard, switch view to plain text mode 

So if I execute sl.remove("hello");
all items above will be removed from sl

Thanks