diff options
Diffstat (limited to 'dev-dotnet/gecko-sharp/files/gecko-sharp-0.7-1.9.3-compat.diff')
-rw-r--r-- | dev-dotnet/gecko-sharp/files/gecko-sharp-0.7-1.9.3-compat.diff | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/dev-dotnet/gecko-sharp/files/gecko-sharp-0.7-1.9.3-compat.diff b/dev-dotnet/gecko-sharp/files/gecko-sharp-0.7-1.9.3-compat.diff new file mode 100644 index 000000000000..6d15788dc16a --- /dev/null +++ b/dev-dotnet/gecko-sharp/files/gecko-sharp-0.7-1.9.3-compat.diff @@ -0,0 +1,18 @@ +diff -aur gecko-sharp-2.0-0.7-orig/gtkmozembed/WebControl.custom gecko-sharp-2.0-0.7/gtkmozembed/WebControl.custom +--- gecko-sharp-2.0-0.7-orig/gtkmozembed/WebControl.custom 2005-02-06 16:53:36.000000000 -0500 ++++ gecko-sharp-2.0-0.7/gtkmozembed/WebControl.custom 2005-05-07 09:16:59.000000000 -0400 +@@ -72,12 +72,12 @@ + + public WebControl(string aPath, string aDir) : base (IntPtr.Zero) + { +- gtk_moz_embed_set_profile_path(aPath, aDir); ++ SetProfilePath (aPath, aDir); + Raw = gtk_moz_embed_new (); + } + + public WebControl() : base (IntPtr.Zero) + { +- gtk_moz_embed_set_profile_path("gecko-sharp", "DummyProfile"); ++ SetProfilePath ("gecko-sharp", "DummyProfile"); + Raw = gtk_moz_embed_new(); + } |