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

« back to all changes in this revision

Viewing changes to src/sp-metrics.cpp

  • 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:
25
25
  case SP_IN:
26
26
    src = IN_PER_IN;
27
27
    break;
 
28
  case SP_FT:
 
29
    src = FT_PER_IN;
 
30
    break;
28
31
  case SP_PT:
29
32
    src = PT_PER_IN;
30
33
    break;
 
34
  case SP_PC:
 
35
    src = PC_PER_IN;
 
36
    break;
31
37
  case SP_PX:
32
38
    src = PX_PER_IN;
33
39
    break;
49
55
  case SP_IN:
50
56
    dst = IN_PER_IN;
51
57
    break;
 
58
  case SP_FT:
 
59
    dst = FT_PER_IN;
 
60
    break;
52
61
  case SP_PT:
53
62
    dst = PT_PER_IN;
54
63
    break;
 
64
  case SP_PC:
 
65
    dst = PC_PER_IN;
 
66
    break;
55
67
  case SP_PX:
56
68
    dst = PX_PER_IN;
57
69
    break;