diff --git a/src/zmapApp/zmapAppremote.c b/src/zmapApp/zmapAppremote.c
index ee9b9be74b8d26c4db5dbe11c5f3c293e5744eea..19a38a4852cbec1921292e381b95057d98bd2fbe 100755
--- a/src/zmapApp/zmapAppremote.c
+++ b/src/zmapApp/zmapAppremote.c
@@ -27,9 +27,9 @@
  *
  * Exported functions: None
  * HISTORY:
- * Last edited: Aug 13 18:01 2009 (edgrif)
+ * Last edited: Mar 25 14:41 2010 (edgrif)
  * Created: Thu May  5 18:19:30 2005 (rds)
- * CVS info:   $Id: zmapAppremote.c,v 1.39 2010-03-04 15:09:38 mh17 Exp $
+ * CVS info:   $Id: zmapAppremote.c,v 1.40 2010-03-29 09:54:10 edgrif Exp $
  *-------------------------------------------------------------------
  */
 
@@ -123,7 +123,7 @@ void zmapAppRemoteInstaller(GtkWidget *widget, gpointer app_context_data)
         {
           ZMapXRemoteObj client = NULL;
 
-          if((app_context->xremote_client = client = zMapXRemoteNew()) != NULL)
+          if ((app_context->xremote_client = client = zMapXRemoteNew(GDK_DISPLAY())) != NULL)
             {
               Window id = (Window)GDK_DRAWABLE_XID(widget->window);
               char *req = NULL, *resp = NULL;
diff --git a/src/zmapControl/remote/xremote_gui_test.c b/src/zmapControl/remote/xremote_gui_test.c
index b0355d01f8efc93e36e39adcaeb81aedfa3c7891..6d2c6b51837848b7dd618dcef78a0e428c7a4828 100755
--- a/src/zmapControl/remote/xremote_gui_test.c
+++ b/src/zmapControl/remote/xremote_gui_test.c
@@ -28,9 +28,9 @@
  * Exported functions: None
  *              
  * HISTORY:
- * Last edited: Mar  2 15:48 2010 (edgrif)
+ * Last edited: Mar 26 09:20 2010 (edgrif)
  * Created: Thu Feb 15 11:25:20 2007 (rds)
- * CVS info:   $Id: xremote_gui_test.c,v 1.20 2010-03-04 15:09:47 mh17 Exp $
+ * CVS info:   $Id: xremote_gui_test.c,v 1.21 2010-03-29 09:54:55 edgrif Exp $
  *-------------------------------------------------------------------
  */
 
@@ -633,7 +633,7 @@ static void addClientCB(GtkWidget *button, gpointer user_data)
   client_text = (char *)gtk_entry_get_text(GTK_ENTRY(suite->client_entry));
   wxid = (Window)(strtoul(client_text, (char **)NULL, 16));
 
-  if ((client = zMapXRemoteNew()))
+  if ((client = zMapXRemoteNew(NULL)))
     {
       zMapXRemoteInitClient(client, wxid);
       addClientToHash(suite->xremote_clients, client, wxid, NULL, TRUE);
@@ -1044,7 +1044,7 @@ static gboolean xml_client_end_cb(gpointer user_data, ZMapXMLElement client_elem
   if((attr  = zMapXMLElementGetAttributeByName(client_element, "response_atom")) != NULL)
     resp = (char *)g_quark_to_string(zMapXMLAttributeGetValue(attr));
   
-  if(wxid && req && resp && (new_client = zMapXRemoteNew()))
+  if(wxid && req && resp && (new_client = zMapXRemoteNew(NULL)))
     {
       GList *actions = NULL;
 
@@ -1118,7 +1118,7 @@ static gboolean xml_client_start_cb(gpointer user_data, ZMapXMLElement client_el
       if((attr  = zMapXMLElementGetAttributeByName(client_element, "response_atom")) != NULL)
         resp = (char *)g_quark_to_string(zMapXMLAttributeGetValue(attr));
       
-      if (wxid && req && resp && (new_client = zMapXRemoteNew()))
+      if (wxid && req && resp && (new_client = zMapXRemoteNew(NULL)))
         {
 	  GList *actions = NULL;
 
diff --git a/src/zmapControl/zmapControlRemoteReceive.c b/src/zmapControl/zmapControlRemoteReceive.c
index 83a3fa1f77b016d7c57bab4fa70d30c833062f89..b176878938b9757dcb0842fae855fe5a51a1e15d 100755
--- a/src/zmapControl/zmapControlRemoteReceive.c
+++ b/src/zmapControl/zmapControlRemoteReceive.c
@@ -28,9 +28,9 @@
  * Exported functions: See zmapControl_P.h
  *              
  * HISTORY:
- * Last edited: Feb  8 15:19 2010 (edgrif)
+ * Last edited: Mar 25 14:42 2010 (edgrif)
  * Created: Thu Jul 12 14:54:30 2007 (rds)
- * CVS info:   $Id: zmapControlRemoteReceive.c,v 1.10 2010-03-04 15:09:54 mh17 Exp $
+ * CVS info:   $Id: zmapControlRemoteReceive.c,v 1.11 2010-03-29 09:54:30 edgrif Exp $
  *-------------------------------------------------------------------
  */
 
@@ -366,7 +366,7 @@ static void createClient(ZMap zmap, ZMapXRemoteParseCommandData input_data, Resp
   char *format_response = "<client xwid=\"0x%lx\" created=\"%d\" exists=\"%d\" />";
   int created, exists;
 
-  if (!(zmap->xremote_client) && (client = zMapXRemoteNew()) != NULL)
+  if (!(zmap->xremote_client) && (client = zMapXRemoteNew(GDK_DISPLAY())) != NULL)
     {
       zMapXRemoteInitClient(client, client_params->xid) ;
       zMapXRemoteSetRequestAtomName(client, (char *)g_quark_to_string(client_params->request)) ;
diff --git a/src/zmapView/zmapViewRemoteReceive.c b/src/zmapView/zmapViewRemoteReceive.c
index 9f372d0c649c0dc9940bc51d4c969b15a9d02142..6b127ff00baa557768ecd0e4cc44f23131be6112 100755
--- a/src/zmapView/zmapViewRemoteReceive.c
+++ b/src/zmapView/zmapViewRemoteReceive.c
@@ -29,9 +29,9 @@
  * Exported functions: See zmapView_P.h
  *
  * HISTORY:
- * Last edited: Jan 27 15:46 2010 (edgrif)
+ * Last edited: Mar 25 14:43 2010 (edgrif)
  * Created: Tue Jul 10 21:02:42 2007 (rds)
- * CVS info:   $Id: zmapViewRemoteReceive.c,v 1.42 2010-03-19 08:56:42 mh17 Exp $
+ * CVS info:   $Id: zmapViewRemoteReceive.c,v 1.43 2010-03-29 09:56:50 edgrif Exp $
  *-------------------------------------------------------------------
  */
 
@@ -488,7 +488,7 @@ static void createClient(ZMapView view, ZMapXRemoteParseCommandData input_data,
   char *format_response = "<client xwid=\"0x%lx\" created=\"%d\" exists=\"%d\" />";
   int created, exists;
 
-  if(!(view->xremote_client) && (client = zMapXRemoteNew()) != NULL)
+  if(!(view->xremote_client) && (client = zMapXRemoteNew(GDK_DISPLAY())) != NULL)
     {
       zMapXRemoteInitClient(client, client_params->xid);
       zMapXRemoteSetRequestAtomName(client, (char *)g_quark_to_string(client_params->request));