Switch to side-by-side view

--- a/src/qtgui/reslist.cpp
+++ b/src/qtgui/reslist.cpp
@@ -158,7 +158,7 @@
 string QtGuiResListPager::iconPath(const string& mtype)
 {
     string iconpath;
-    rclconfig->getMimeIconName(mtype, &iconpath);
+    theconfig->getMimeIconName(mtype, &iconpath);
     return iconpath;
 }
 
@@ -167,7 +167,7 @@
     sugg.clear();
 #ifdef RCL_USE_ASPELL
     bool noaspell = false;
-    rclconfig->getConfParam("noaspell", &noaspell);
+    theconfig->getConfParam("noaspell", &noaspell);
     if (noaspell)
         return;
     if (!aspell) {
@@ -524,7 +524,7 @@
 {
     m_pageParaToReldocnums.clear();
     clear();
-    m_pager->displayPage(rclconfig);
+    m_pager->displayPage(theconfig);
     LOGDEB0(("ResList::resultPageNext: hasNext %d hasPrev %d\n",
 	    m_pager->hasPrev(), m_pager->hasNext()));
     emit prevPageAvailable(m_pager->hasPrev());