+/*************************************************************************/
+#pragma mark -
+#pragma mark NSTextField DELEGATE METHODS
+/*************************************************************************/
+
+- (void)controlTextDidChange:(NSNotification*)note
+{
+ if ([note object] == hostTextField) {
+ if ([[hostTextField stringValue] length] == 0) {
+ [sharingPanelOKButton setEnabled:NO];
+ } else {
+ [sharingPanelOKButton setEnabled:YES];
+ }
+ }
+}