~ubuntu-branches/ubuntu/oneiric/monodevelop/oneiric

« back to all changes in this revision

Viewing changes to src/core/Mono.Texteditor/Mono.TextEditor.Highlighting/ReferencedChunkStyle.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2011-06-27 17:03:13 UTC
  • mto: (1.8.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 54.
  • Revision ID: james.westby@ubuntu.com-20110627170313-6cvz3s19x6e9hqe9
ImportĀ upstreamĀ versionĀ 2.5.92+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
        {
33
33
                Style style;
34
34
                string referencedStyle;
35
 
                
36
 
                public override Gdk.Color Color {
 
35
                public override Cairo.Color CairoColor {
37
36
                        get {
38
 
                                return style.GetChunkStyle (referencedStyle).Color;
 
37
                                return style.GetChunkStyle (referencedStyle).CairoColor;
39
38
                        }
40
39
                }
41
40
                
42
 
                public override Gdk.Color BackgroundColor {
 
41
                public override Cairo.Color CairoBackgroundColor {
43
42
                        get {
44
 
                                return style.GetChunkStyle (referencedStyle).BackgroundColor;
 
43
                                return style.GetChunkStyle (referencedStyle).CairoBackgroundColor;
45
44
                        }
46
45
                }
47
46