Ignore:
Timestamp:
01/07/14 10:59:52 (10 years ago)
Author:
jts21
Message:

Switch to using specialised objects for settings so they make more a bit more sense (now each setting is a single object instead of multiple, and setter functions and default values are less hackish)
Also added tooltips (help strings) to settings, will need to add a way of displaying these (maybe add the idea of a tooltip which is a text item which only appears when hovering over another item?)
Converted all settings over to new format, everything seems to be working fine

Location:
trunk/src/org/expeditee/agents
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/agents/SearchTree.java

    r570 r655  
    7070
    7171                String fullPath = null;
    72                 for (String possiblePath : UserSettings.FrameDirs) {
     72                for (String possiblePath : UserSettings.FrameDirs.get()) {
    7373                        fullPath = FrameIO.getFrameFullPathName(possiblePath, frameName);
    7474                        if (fullPath != null)
  • trunk/src/org/expeditee/agents/SearchTreeNoResults.java

    r570 r655  
    5353               
    5454                String fullPath = null;
    55                 for (String possiblePath : UserSettings.FrameDirs) {
     55                for (String possiblePath : UserSettings.FrameDirs.get()) {
    5656                        fullPath = FrameIO.getFrameFullPathName(possiblePath, frameName);
    5757                        if (fullPath != null)
Note: See TracChangeset for help on using the changeset viewer.