fix NPE
authordadubrow
Thu, 16 Sep 2010 10:15:59 -0500
changeset 2030 e290bb67ac00
parent 2029 fc0ca46d10e2
child 2031 736964f28d2a
child 2042 2c44aae86249
fix NPE
connectivity/com.nokia.carbide.remoteConnections/src/com/nokia/carbide/remoteconnections/view/DescriptionLabelProvider.java
--- a/connectivity/com.nokia.carbide.remoteConnections/src/com/nokia/carbide/remoteconnections/view/DescriptionLabelProvider.java	Thu Sep 16 09:25:20 2010 -0500
+++ b/connectivity/com.nokia.carbide.remoteConnections/src/com/nokia/carbide/remoteconnections/view/DescriptionLabelProvider.java	Thu Sep 16 10:15:59 2010 -0500
@@ -108,7 +108,8 @@
 						break;
 					case SWT.MouseDown:
 						String linkHRef = getLinkHRef(event);
-						handleLinkClicked(linkHRef, event);
+						if (linkHRef != null)
+							handleLinkClicked(linkHRef, event);
 						break;
 					default:
 				}