X-Git-Url: https://ecere.com/cgi-bin/gitweb.cgi?p=ede;a=blobdiff_plain;f=explorer%2Fsrc%2FExplorer.ec;h=8bfeaa86418390ccf03ca6bf2b54033e94b91be7;hp=2f447f802d3babefee603c07d73a0a6795dfd3e9;hb=3585433f3055c63a80dce62dc68343ba03a3568c;hpb=36c3b8012682a36987d0cbeb2399fe003cf7622f diff --git a/explorer/src/Explorer.ec b/explorer/src/Explorer.ec index 2f447f8..8bfeaa8 100644 --- a/explorer/src/Explorer.ec +++ b/explorer/src/Explorer.ec @@ -23,7 +23,9 @@ class Explorer : GuiApplication QuickPathTool goPath { }; QuickPathTool searchPath { }; char * findWhat = null; + SetLoggingMode(debug, null); + if(argc > 1) { if(!strcmpi(argv[1], "go") && argc > 2) @@ -61,7 +63,7 @@ class Explorer : GuiApplication { ExplorerWindow explorerWnd { }; explorerWnd.Create(); - //explorerWnd.GoToLocation(goPath); + explorerWnd.GoTo(goPath, false, false); } else if(searchPath) { @@ -115,7 +117,7 @@ struct QuickPathTool } get { return path[0] ? path : null; } } - property bool { get { return (bool)path[0]; } } + property bool { get { return path[0] != '\0'; } } }; define app = ((Explorer)__thisModule);