Note: This website is archived. For up-to-date information about D projects and development, please visit wiki.dlang.org.

Changes between Version 11 and Version 12 of CodeExamples

Show
Ignore:
Author:
Mike Wey (IP: 80.60.125.171)
Timestamp:
01/16/09 18:55:07 (15 years ago)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CodeExamples

    v11 v12  
    126126                with (new AboutDialog()) 
    127127                { 
    128                         char** names = (new char*[2]).ptr; 
    129                         int i = 0; 
    130                         names[i++] = cast(char*)"Jake Day (Okibi)"; 
     128                        string[] names; 
     129                        names ~= "Jake Day (Okibi)"; 
    131130                        setAuthors(names); 
    132131                        setWebsite("http://ddev.ratedo.com");