From 69ea68117f71b9f76093b709efc32bec76e2a10e Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Wed, 4 Nov 2015 07:54:22 +0100 Subject: [PATCH] fix, a DUB project couldnt be opened from the mini explorer and trying to do so lead to an AV --- src/ce_miniexplorer.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ce_miniexplorer.pas b/src/ce_miniexplorer.pas index ce1cce5f..32d06ad2 100644 --- a/src/ce_miniexplorer.pas +++ b/src/ce_miniexplorer.pas @@ -316,7 +316,7 @@ begin if isValidNativeProject(fname) then proj := TCENativeProject.create(nil) as ICECommonProject else if isValidDubProject(fname) then - proj := TCENativeProject.create(nil) as ICECommonProject; + proj := TCEDubProject.create(nil) as ICECommonProject; if assigned(proj) then proj.loadFromFile(fname) else