~ubuntu-branches/ubuntu/lucid/gbrainy/lucid

« back to all changes in this revision

Viewing changes to src/Games/Memory/MemoryWords.cs

  • Committer: Bazaar Package Importer
  • Author(s): Robert Ancell
  • Date: 2010-03-08 11:11:11 UTC
  • mfrom: (13.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20100308111111-pxz008t81zfu1w8q
Tags: 1.40-1ubuntu1
* Update from Debian unstable, remaining changes: (LP: #534113)
* debian/patches/01_lpi.patch:
* debian/patches/99_autoreconf.patch:
* debian/control:
  - Add Launchpad integration

Show diffs side-by-side

added added

removed removed

Lines of Context:
118
118
                        base.Initialize ();
119
119
                }
120
120
        
121
 
                public override void DrawPossibleAnswers (CairoContextEx gr, int area_width, int area_height)
 
121
                public override void DrawPossibleAnswers (CairoContextEx gr, int area_width, int area_height, bool rtl)
122
122
                {
123
123
                        double x= DrawAreaX + 0.125, y = DrawAreaY + 0.1;
124
124
                        int cnt = 0;
142
142
                        }
143
143
                }
144
144
        
145
 
                public override void DrawObjectToMemorize (CairoContextEx gr, int area_width, int area_height)
 
145
                public override void DrawObjectToMemorize (CairoContextEx gr, int area_width, int area_height, bool rtl)
146
146
                {
147
 
                        base.DrawObjectToMemorize (gr, area_width, area_height);
 
147
                        base.DrawObjectToMemorize (gr, area_width, area_height, rtl);
148
148
                        DrawObject (gr, area_width, area_height);
149
149
                }
150
150