Changeset 11477


Ignore:
Timestamp:
2006-03-27T11:23:45+12:00 (18 years ago)
Author:
kjdon
Message:

image copying error now adds in the paths of image to copy and images folder

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/cdm/GeneralManager.java

    r11080 r11477  
    438438        ready = false;
    439439        has_been_warned = false;
    440         } 
     440        }
     441
    441442    }
    442443
     
    483484                DebugStream.printStackTrace(exception);
    484485                // Show warning
    485                 JOptionPane.showMessageDialog(Gatherer.g_man, Dictionary.get("CDM.General.Image_Copy_Failed"), Dictionary.get("General.Error"), JOptionPane.ERROR_MESSAGE);
     486                String[] args = new String[] {file.getAbsolutePath(), images_folder.getAbsolutePath()};
     487                JOptionPane.showMessageDialog(Gatherer.g_man, Dictionary.get("CDM.General.Image_Copy_Failed", args), Dictionary.get("General.Error"), JOptionPane.ERROR_MESSAGE);
    486488                // Nothing else we can do.
    487489                return;
Note: See TracChangeset for help on using the changeset viewer.