Switch to side-by-side view

--- a/src/qtgui/main.cpp
+++ b/src/qtgui/main.cpp
@@ -40,9 +40,6 @@
 #include "rclmain_w.h"
 #include "ssearch_w.h"
 #include "guiutils.h"
-#ifdef RCL_USE_ASPELL
-#include "rclaspell.h"
-#endif
 #include "smallut.h"
 #include "readfile.h"
 
@@ -83,9 +80,6 @@
 
 Rcl::Db *rcldb;
 
-#ifdef RCL_USE_ASPELL
-Aspell *aspell;
-#endif
 
 int recollNeedsExit;
 RclMain *mainWindow;
@@ -158,10 +152,6 @@
 
     deleteAllTempFiles();
     
-#ifdef RCL_USE_ASPELL
-    deleteZ(aspell);
-#endif
-
     LOGDEB2("recollCleanup: done\n" );
 }
 
@@ -322,15 +312,6 @@
 
     //    fprintf(stderr, "Translations installed\n");
 
-#ifdef RCL_USE_ASPELL
-    aspell = new Aspell(theconfig);
-    aspell->init(reason);
-    if (!aspell || !aspell->ok()) {
-	LOGDEB("Aspell speller creation failed "  << (reason) << "\n" );
-	aspell = 0;
-    }
-#endif
-
     string historyfile = path_cat(theconfig->getConfDir(), "history");
     g_dynconf = new RclDynConf(historyfile);
     if (!g_dynconf || !g_dynconf->ok()) {