Changes between Version 4 and Version 5 of MscgenPlugin


Ignore:
Timestamp:
May 13, 2010, 10:57:26 PM (14 years ago)
Author:
Actown
Comment:

Fixed a error in the msc code. A ' was used instead of a ". This causes errors in the example!

Legend:

Unmodified
Added
Removed
Modified
  • MscgenPlugin

    v4 v5  
    3636  a,b,c;
    3737
    38   a->b [ label = 'ab()' ] ;
     38  a->b [ label = "ab()"];
    3939  b->c [ label = "bc(TRUE)"];
    40   c=>c [ label = "process(1)" ];
    41   c=>c [ label = "process(2)" ];
     40  c=>c [ label = "process(1)"];
     41  c=>c [ label = "process(2)"];
    4242  ...;
    43   c=>c [ label = "process(n)" ];
    44   c=>c [ label = "process(END)" ];
     43  c=>c [ label = "process(n)"];
     44  c=>c [ label = "process(END)"];
    4545  a<<=c [ label = "callback()"];
    4646  ---  [ label = "If more to run", ID="*" ];