Ignore:
Timestamp:
2008-06-15T12:28:42+02:00 (18 years ago)
Author:
ramack
Message:

patch by bruce89, closes #812; thanks bruce

Location:
trunk/src/org/openstreetmap/josm/tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/AudioPlayer.java

    r627 r655  
    140140        /**
    141141         * To get the Url of the playing or recently played audio.
    142          * @returns url - could be null
     142         * @return url - could be null
    143143         */
    144144        public static URL url() {
     
    148148        /**
    149149         * Whether or not we are paused.
    150          * @returns boolean whether or not paused
     150         * @return boolean whether or not paused
    151151         */
    152152        public static boolean paused() {
     
    156156        /**
    157157         * Whether or not we are playing.
    158          * @returns boolean whether or not playing
     158         * @return boolean whether or not playing
    159159         */
    160160        public static boolean playing() {
     
    164164        /**
    165165         * How far we are through playing, in seconds.
    166          * @returns double seconds
     166         * @return double seconds
    167167         */
    168168        public static double position() {
     
    172172        /**
    173173         * Speed at which we will play.
    174          * @returns double, speed multiplier
     174         * @return double, speed multiplier
    175175         */
    176176        public static double speed() {
  • trunk/src/org/openstreetmap/josm/tools/BugReportExceptionHandler.java

    r627 r655  
    3333
    3434/**
    35  * An exception handler, that ask the user to send a bug report.
     35 * An exception handler that asks the user to send a bug report.
    3636 *
    3737 * @author imi
     
    6060                                int answer = JOptionPane.showConfirmDialog(
    6161                                                Main.parent,
    62                                                 tr("An unexpected exception occurred, that may come from in the ''{0}'' plugin.", plugin.info.name)+"\n"+
     62                                                tr("An unexpected exception occurred that may have come from the ''{0}'' plugin.", plugin.info.name)+"\n"+
    6363                                                (plugin.info.author != null ? tr("According to the information within the plugin, the author is {0}.", plugin.info.author) : "")+"\n"+
    6464                                                tr("Should the plugin be disabled?"),
Note: See TracChangeset for help on using the changeset viewer.