classpath-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [cp-patches] Patch: #13419 JOptionPane.showInputDialog multi-line


From: Tom Tromey
Subject: Re: [cp-patches] Patch: #13419 JOptionPane.showInputDialog multi-line
Date: 20 Jun 2005 10:27:28 -0600
User-agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3.50

>>>>> "Tony" == Anthony Balkissoon <address@hidden> writes:

Tony> 2005-06-17  Anthony Balkissoon  <address@hidden>
Tony>   * javax/swing/SwingUtilities.java:
Tony>   (layoutCompoundLabel): Added check for multi-line text.

Just a minor nit...

Tony> +            fromIndex=text.indexOf('\n', fromIndex)+1;

Operators need spaces around them:

 +            fromIndex = text.indexOf('\n', fromIndex) + 1;

Tom




reply via email to

[Prev in Thread] Current Thread [Next in Thread]