Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/main/src
diff options
context:
space:
mode:
authorMichael Hutchinson <m.j.hutchinson@gmail.com>2012-05-30 21:31:27 +0400
committerMichael Hutchinson <m.j.hutchinson@gmail.com>2012-06-01 03:55:47 +0400
commit21d6f6b62ed2709ba429e9fa38adde1528986810 (patch)
treefb62374782915b4e6a88f49e9810ae5fbe630b85 /main/src
parentfafbc3678ae0ba545dd11ef7bde70df7881b3b0c (diff)
[TextEditor] Fix check for gesture support
Diffstat (limited to 'main/src')
-rw-r--r--main/src/core/Mono.Texteditor/Mono.TextEditor/Gui/GtkGestures.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/core/Mono.Texteditor/Mono.TextEditor/Gui/GtkGestures.cs b/main/src/core/Mono.Texteditor/Mono.TextEditor/Gui/GtkGestures.cs
index a37c5d642a..e55190d4a3 100644
--- a/main/src/core/Mono.Texteditor/Mono.TextEditor/Gui/GtkGestures.cs
+++ b/main/src/core/Mono.Texteditor/Mono.TextEditor/Gui/GtkGestures.cs
@@ -47,7 +47,7 @@ namespace Mono.TextEditor
try {
isSupported = gdk_quartz_supports_gesture_events ();
Console.WriteLine (isSupported);
- } catch (DllNotFoundException) {
+ } catch (EntryPointNotFoundException) {
}
}
}
@@ -250,4 +250,4 @@ namespace Mono.TextEditor
printf ("y_root %d\n", (int)&(v->y_root));
}
*/
-} \ No newline at end of file
+}