[Monodevelop-patches-list] r548 - trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/ReferenceDialog
commit-watcher at mono-cvs.ximian.com
commit-watcher at mono-cvs.ximian.com
Sun Jan 18 15:14:44 EST 2004
Author: tberman
Date: 2004-01-18 15:14:44 -0500 (Sun, 18 Jan 2004)
New Revision: 548
Modified:
trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/ReferenceDialog/SelectReferenceDialog.cs
Log:
this commit never existed
Modified: trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/ReferenceDialog/SelectReferenceDialog.cs
===================================================================
--- trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/ReferenceDialog/SelectReferenceDialog.cs 2004-01-18 20:03:11 UTC (rev 547)
+++ trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/ReferenceDialog/SelectReferenceDialog.cs 2004-01-18 20:14:44 UTC (rev 548)
@@ -133,8 +133,11 @@
Gtk.TreeIter looping_iter;
refTreeStore.GetIterFirst (out looping_iter);
do {
- if (referenceLocation == (string)refTreeStore.GetValue (looping_iter, 2) && referenceName == (string)refTreeStore.GetValue (looping_iter, 0)) {
- return;
+ try {
+ if (referenceLocation == (string)refTreeStore.GetValue (looping_iter, 2) && referenceName == (string)refTreeStore.GetValue (looping_iter, 0)) {
+ return;
+ }
+ } catch {
}
} while (refTreeStore.IterNext (out looping_iter));
More information about the Monodevelop-patches-list
mailing list