explorer: attemp at opening files with desktop environment's file associations.
authorRejean Loyer <rejean.loyer@gmail.com>
Thu, 15 Sep 2011 00:34:22 +0000 (20:34 -0400)
committerRejean Loyer <rejean.loyer@gmail.com>
Thu, 15 Sep 2011 00:34:22 +0000 (20:34 -0400)
explorer/src/ExplorerWindow.ec

index 2a61c01..38b30b6 100644 (file)
@@ -299,8 +299,15 @@ class ExplorerWindow : Window
          if(node.type.isFile)
          {
             char command[MAX_LOCATION];
          if(node.type.isFile)
          {
             char command[MAX_LOCATION];
-            char * t = node.path;
-            sprintf(command, "ide %s", node.path);
+            /*_FileType t = node.type;
+            if(t == ewsFile || t == epjFile ||
+                  t == ecFile || t == ehFile ||
+                  t == cppFile || t == hppFile ||
+                  t == cFile || t == hFile ||
+                  t == textFile || t == webFile)*/
+               sprintf(command, "ide %s", node.path);
+            /*else
+               sprintf(command, "%s", node.path);*/
             ShellOpen(command);
          }
          return true;
             ShellOpen(command);
          }
          return true;