Switch to side-by-side view

--- a/src/query/dynconf.cpp
+++ b/src/query/dynconf.cpp
@@ -43,8 +43,8 @@
     int maxlen)
 {
     // Is this doc already in list ? If it is we remove the old entry
-    list<string> names = m_data.getNames(sk);
-    list<string>::const_iterator it;
+    vector<string> names = m_data.getNames(sk);
+    vector<string>::const_iterator it;
     bool changed = false;
     for (it = names.begin(); it != names.end(); it++) {
 	string oval;
@@ -61,7 +61,7 @@
 	}
     }
 
-    // Maybe reget list
+    // Maybe reget things
     if (changed)
 	names = m_data.getNames(sk);
 
@@ -95,8 +95,8 @@
 
 bool RclDynConf::eraseAll(const string &sk)
 {
-    list<string> names = m_data.getNames(sk);
-    list<string>::const_iterator it;
+    vector<string> names = m_data.getNames(sk);
+    vector<string>::const_iterator it;
     for (it = names.begin(); it != names.end(); it++) {
 	    m_data.erase(*it, sk);
     }