git://git.phpeclipse.com
/
phpeclipse.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
fa55c6e
)
initially focus file name field, if container field contains useful value
author
bananeweizen
<bananeweizen>
Tue, 20 Dec 2005 01:39:19 +0000 (
01:39
+0000)
committer
bananeweizen
<bananeweizen>
Tue, 20 Dec 2005 01:39:19 +0000 (
01:39
+0000)
net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/wizards/HTMLFileWizardPage.java
patch
|
blob
|
history
net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/wizards/PHPFileWizardPage.java
patch
|
blob
|
history
diff --git
a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/wizards/HTMLFileWizardPage.java
b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/wizards/HTMLFileWizardPage.java
index
7d0ad1b
..
796e732
100644
(file)
--- a/
net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/wizards/HTMLFileWizardPage.java
+++ b/
net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/wizards/HTMLFileWizardPage.java
@@
-123,6
+123,7
@@
public class HTMLFileWizardPage extends WizardPage {
else
container = ((IResource) obj).getParent();
containerText.setText(container.getFullPath().toString());
+ fileText.setFocus();
}
}
fileText.setText("*.html");
diff --git
a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/wizards/PHPFileWizardPage.java
b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/wizards/PHPFileWizardPage.java
index
ec91d2b
..
4e6a174
100644
(file)
--- a/
net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/wizards/PHPFileWizardPage.java
+++ b/
net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/wizards/PHPFileWizardPage.java
@@
-123,6
+123,7
@@
public class PHPFileWizardPage extends WizardPage {
else
container = ((IResource) obj).getParent();
containerText.setText(container.getFullPath().toString());
+ fileText.setFocus();
}
}
fileText.setText("*.php");