Ignore:
Timestamp:
26.10.2009 15:23:39 (3 years ago)
Author:
Gubaer
Message:

Added explicit help topics
See also current list of help topics with links to source files and to help pages

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/HelpAction.java

    r2308 r2323  
    3535                    c = SwingUtilities.getDeepestComponentAt(c, mouse.x, mouse.y); 
    3636                    topic = HelpUtil.getContextSpecificHelpTopic(c); 
     37                    System.out.println("topic is:" + topic); 
    3738                } else { 
    3839                    topic = null; 
     
    4142                Point mouse = Main.parent.getMousePosition(); 
    4243                topic = HelpUtil.getContextSpecificHelpTopic(SwingUtilities.getDeepestComponentAt(Main.parent, mouse.x, mouse.y)); 
     44                System.out.println("topic is:" + topic); 
    4345            } 
    4446            if (topic == null) { 
Note: See TracChangeset for help on using the changeset viewer.