Switch to side-by-side view

--- a/src/net/timbusproject/context/converter/OWLExport.java
+++ b/src/net/timbusproject/context/converter/OWLExport.java
@@ -275,12 +275,12 @@
         if (viewName != null) {
             System.out.print("Trying to find view '" + viewName + "'...  ");
             view = getViewByName(model, viewName);
-            System.out.println(view == null ? "found" : "not found");
+            System.out.println(view != null ? "found" : "not found");
         }
         if (view == null) {
             System.out.print("Trying to find layered view...  ");
             view = getLayeredView(model);
-            System.out.println(view == null ? "found" : "not found");
+            System.out.println(view != null ? "found" : "not found");
         }
 
         return exportLayout(layoutFile, defaultIRI, view);