~ubuntu-branches/ubuntu/gutsy/firefox/gutsy

« back to all changes in this revision

Viewing changes to js/src/jspubtd.h

  • Committer: Bazaar Package Importer
  • Author(s): Ian Jackson
  • Date: 2006-10-10 18:49:32 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20061010184932-da75izt7y0e59afq
Tags: 1.99+2.0rc2+dfsg-0ubuntu1
* New upstream version 2.0rc2.
* Fix/workaround for epiphany GtkSocket lifetype crash:
  apply patch id=241087 from Mozilla Bugzilla #241535 to fix LP #63814.
* Change application name to `Firefox', as requested by mdz.
  Files changed:
    - browser/locales/en-US/chrome/branding/brand.dtd
    - browser/locales/en-US/chrome/branding/brand.properties;
  New values:
    - brandShortName and brandFullName: `Bon Echo' => `Firefox'
    - vendorShortName: `Mozilla' => `Ubuntu'
* Make preferences dialogue fit again (bah!).

Show diffs side-by-side

added added

removed removed

Lines of Context:
595
595
} JSExnType;
596
596
 
597
597
typedef struct JSErrorFormatString {
598
 
    const char *format;  /* the error message (may be UTF-8 if compiled with JS_C_STRINGS_ARE_UTF8) */
599
 
    uint16 argCount;     /* the number of arguments to convert in the error message */
600
 
    int16 exnType;       /* One of the JSExnType constants above */
 
598
    /* The error format string (UTF-8 if JS_C_STRINGS_ARE_UTF8 is defined). */
 
599
    const char *format;
 
600
 
 
601
    /* The number of arguments to expand in the formatted error message. */
 
602
    uint16 argCount;
 
603
 
 
604
    /* One of the JSExnType constants above. */
 
605
    int16 exnType;
601
606
} JSErrorFormatString;
602
607
 
603
608
typedef const JSErrorFormatString *