~ubuntu-branches/debian/experimental/inkscape/experimental

« back to all changes in this revision

Viewing changes to src/dom/css.h

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Viehmann
  • Date: 2008-09-09 23:29:02 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20080909232902-c50iujhk1w79u8e7
Tags: 0.46-2.1
* Non-maintainer upload.
* Add upstream patch fixing a crash in the open dialog
  in the zh_CN.utf8 locale. Closes: #487623.
  Thanks to Luca Bruno for the patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
430
430
    CSSStyleDeclarationEntry(const DOMString &nameArg, 
431
431
                             const DOMString &valueArg, 
432
432
                             const DOMString &prioArg)
433
 
        {
 
433
    {
434
434
        name  = nameArg;
435
435
        value = valueArg;
436
436
        prio  = prioArg;
437
 
        }
438
 
    ~CSSStyleDeclarationEntry(){}
 
437
    }
 
438
    virtual ~CSSStyleDeclarationEntry(){}
439
439
    DOMString name;
440
440
    DOMString value;
441
441
    DOMString prio;