mirror of
https://github.com/php/php-src.git
synced 2025-08-20 01:14:28 +02:00
In english, no horizontal space before “!”.
This commit is contained in:
parent
7e0d1938f9
commit
e5263aa3f0
13 changed files with 28 additions and 28 deletions
|
@ -180,7 +180,7 @@
|
|||
</Component>
|
||||
<Component class="javax.swing.JTextField" name="input">
|
||||
<Properties>
|
||||
<Property name="toolTipText" type="java.lang.String" value="Enter phpdbg commands here !"/>
|
||||
<Property name="toolTipText" type="java.lang.String" value="Enter phpdbg commands here!"/>
|
||||
<Property name="enabled" type="boolean" value="false"/>
|
||||
</Properties>
|
||||
<Events>
|
||||
|
|
|
@ -121,7 +121,7 @@ public class JConsole extends javax.swing.JDialog {
|
|||
|
||||
hostnameLabel.setText("Hostname:");
|
||||
|
||||
input.setToolTipText("Enter phpdbg commands here !");
|
||||
input.setToolTipText("Enter phpdbg commands here!");
|
||||
input.setEnabled(false);
|
||||
input.addKeyListener(new java.awt.event.KeyAdapter() {
|
||||
public void keyReleased(java.awt.event.KeyEvent evt) {
|
||||
|
@ -344,7 +344,7 @@ public class JConsole extends javax.swing.JDialog {
|
|||
if (address != null && address.length() > 0) {
|
||||
return address;
|
||||
} else {
|
||||
messageBox("Invalid hostname provided !", MessageType.WARN);
|
||||
messageBox("Invalid hostname provided!", MessageType.WARN);
|
||||
}
|
||||
|
||||
return null;
|
||||
|
@ -354,7 +354,7 @@ public class JConsole extends javax.swing.JDialog {
|
|||
try {
|
||||
return Integer.parseInt(stdinPort.getText());
|
||||
} catch (NumberFormatException ex) {
|
||||
messageBox("Invalid stdin port provided !", MessageType.WARN);
|
||||
messageBox("Invalid stdin port provided!", MessageType.WARN);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
@ -363,7 +363,7 @@ public class JConsole extends javax.swing.JDialog {
|
|||
try {
|
||||
return Integer.parseInt(stdoutPort.getText());
|
||||
} catch (NumberFormatException ex) {
|
||||
messageBox("Invalid stdout port provided !", MessageType.WARN);
|
||||
messageBox("Invalid stdout port provided!", MessageType.WARN);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue