Changeset 63:d0467f3a67b3

Show
Ignore:
Timestamp:
04/13/08 21:08:08 (8 months ago)
Author:
Frank Benoit <benoit@tionex.de>
branch:
default
Message:

remove debug prints

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • dwtx/jface/resource/FontRegistry.d

    r62 r63  
    4747import dwt.dwthelper.Runnable; 
    4848version(Windows) import dwt.internal.win32.OS; 
    49 import tango.util.log.Trace; 
    5049 
    5150/** 
     
    353352            ImportData propdata; 
    354353            if( OS.IsWin95 && OS.WIN32_VERSION >= OS.VERSION (4, 10 )){ 
    355                 Trace.formatln( "JFaceResources {}, load win98", __LINE__ ); 
    356354                propdata = getImportData!( prefix ~ "windows98" ~ postfix ); 
    357355            } 
    358356            else if( OS.WIN32_VERSION >= OS.VERSION (5, 1 )){ 
    359                 Trace.formatln( "JFaceResources {}, load winXP", __LINE__ ); 
    360357                propdata = getImportData!( prefix ~ "windowsxp" ~ postfix ); 
    361358            } 
    362359            else if( OS.WIN32_VERSION >= OS.VERSION (5, 0)){ 
    363                 Trace.formatln( "JFaceResources {}, load win2k", __LINE__ ); 
    364360                propdata = getImportData!( prefix ~ "windows2000" ~ postfix ); 
    365361            } 
    366362            else if( OS.WIN32_VERSION >= OS.VERSION (4, 0)){ 
    367                 Trace.formatln( "JFaceResources {}, load winNT", __LINE__ ); 
    368363                propdata = getImportData!( prefix ~ "windowsnt" ~ postfix ); 
    369364            } 
     
    682677     */ 
    683678    private FontRecord getFontRecord(String symbolicName) { 
    684         Trace.formatln( "FontRegistry {}: symbolicName={}",__LINE__,symbolicName); 
    685679        Assert.isNotNull(symbolicName); 
    686680        auto result1 = stringToFontRecord.find(symbolicName); 
    687681        if (result1 !is null) { 
    688             Trace.formatln( "FontRegistry {}: ",__LINE__, (cast(FontRecord) result1).baseFont.toString ); 
    689682            return cast(FontRecord) result1; 
    690683        } 
     
    705698 
    706699        stringToFontRecord.add(symbolicName.dup, fontRecord); 
    707             Trace.formatln( "FontRegistry {}: {}",__LINE__,fontRecord.baseFont.toString); 
    708             foreach( fd; fontRecord.baseFont.getFontData() ){ 
    709                 Trace.formatln( "FontRegistry {}: fontdata={}",__LINE__,fd.toString); 
    710             } 
    711700        return fontRecord; 
    712701