Ignore:
Timestamp:
10/10/08 11:05:28 (16 years ago)
Author:
ra33
Message:

Added Spell Checker
Added word count stats
Fixed some mail stuff

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/gui/FrameIO.java

    r348 r362  
    678678                        }
    679679                }
     680               
     681                // Assign a width to the title.
     682                titleItem.setRightMargin(template.getNameItem().getX());
     683               
    680684                return template;
    681685        }
     
    12981302                if (!FrameIO.canAccessFrameset(framesetName))
    12991303                        return false;
     1304                //Clear the cache
     1305                _Cache.clear();
     1306               
    13001307                // Search all the available directories for the directory
    13011308                for (String path : UserSettings.FrameDirs) {
    13021309                        String source = path + framesetName.toLowerCase() + File.separator;
    13031310                        File framesetDirectory = new File(source);
    1304                         // Once we have found the directory move it to the trash
     1311                        // Once we have found the directory move it
    13051312                        if (framesetDirectory.exists()) {
    13061313                                String destPath = destinationFolder
     
    13081315                                int copyNumber = 1;
    13091316                                File dest = new File(destPath + File.separator);
    1310                                 // Create the trash folder if it doesnt already exist
     1317                                // Create the destination folder if it doesnt already exist
    13111318                                if (!dest.getParentFile().exists())
    13121319                                        dest.mkdirs();
    1313                                 // If a frameset with the same name is already in the trash add
     1320                                // If a frameset with the same name is already in the destination add
    13141321                                // a number to the end
    13151322                                while (dest.exists()) {
Note: See TracChangeset for help on using the changeset viewer.