~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor/GtkSpell.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
        {
39
39
                static bool isSupported;
40
40
                
41
 
#region Native methods
42
 
                [DllImport ("libgtkspell")]
43
 
                static extern IntPtr gtkspell_new_attach (IntPtr textView, string locale, IntPtr error);
44
 
 
45
 
                [DllImport ("libgtkspell")]
46
 
                static extern void gtkspell_detach (IntPtr ptr);
47
 
                
48
 
                [DllImport ("libgtkspell")]
49
 
                static extern void gtkspell_recheck_all (IntPtr ptr);
50
 
                
51
 
                [DllImport ("libgtkspell")]
 
41
#region Native methods
 
42
                [DllImport ("libgtkspell", CallingConvention = CallingConvention.Cdecl)]
 
43
                static extern IntPtr gtkspell_new_attach (IntPtr textView, string locale, IntPtr error);
 
44
 
 
45
                [DllImport ("libgtkspell", CallingConvention = CallingConvention.Cdecl)]
 
46
                static extern void gtkspell_detach (IntPtr ptr);
 
47
 
 
48
                [DllImport ("libgtkspell", CallingConvention = CallingConvention.Cdecl)]
 
49
                static extern void gtkspell_recheck_all (IntPtr ptr);
 
50
 
 
51
                [DllImport ("libgtkspell", CallingConvention = CallingConvention.Cdecl)]
52
52
                static extern IntPtr gtkspell_get_from_text_view (IntPtr textView);
53
53
                
54
54
//              [DllImport ("libgtkspell")]