From 170e49b288607fadae31a587aa6c33534d16b4c7 Mon Sep 17 00:00:00 2001 From: Edward Mann Date: Thu, 7 Feb 2008 18:12:54 +0000 Subject: [PATCH] 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 --- .../ui/text/template/DeclarationProposal.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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() -- 1.7.1