From: Edward Mann Date: Thu, 7 Feb 2008 18:12:54 +0000 (+0000) Subject: The CTRL+Space did not show function details. This was missed when i first fixed... X-Git-Url: http://secure.phpeclipse.com The CTRL+Space did not show function details. This was missed when i first fixed the issue with content assist. I hope i got them all. fix 656 --- diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/template/DeclarationProposal.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/template/DeclarationProposal.java index 30c2e8c..c483035 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/template/DeclarationProposal.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/template/DeclarationProposal.java @@ -170,7 +170,7 @@ public class DeclarationProposal extends AbstractProposal { // implements // PHPeclipsePlugin.getWorkspace().getRoot().getLocation().toString(); String workspaceLocation; if (fProject != null) { - workspaceLocation = fProject.getFullPath().toString() + '/'; + workspaceLocation = fProject.getLocation().toString() + '/'; } else { // should never happen? workspaceLocation = PHPeclipsePlugin.getWorkspace().getRoot()