Enlightenment CVS committal

Author  : rbdpngn
Project : e17
Module  : libs/ecore

Dir     : e17/libs/ecore/src/bin


Modified Files:
        ecore_test.c 


Log Message:
Rmoeved API for changing the WM_CLIENT_MACHINE as this shouldn't change after
window creation (afaik), easy enough to re-add it if a need is found.

===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/bin/ecore_test.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- ecore_test.c        12 Oct 2003 17:35:35 -0000      1.6
+++ ecore_test.c        13 Oct 2003 16:28:30 -0000      1.7
@@ -519,14 +519,11 @@
    printf("Visible icon Name: %s\n", tmp);
    free(tmp);
    tmp = ecore_x_window_prop_client_machine_get(win);
-   if (!tmp)
+   if (tmp)
      {
-        printf("No client machine, setting it to host.test.com\n");
-       ecore_x_window_prop_client_machine_set(win, "host.test.com");
-        tmp = ecore_x_window_prop_client_machine_get(win);
+        printf("Client machine: %s\n", tmp);
+        free(tmp);
      }
-   printf("Client machine: %s\n", tmp);
-   free(tmp);
    ecore_x_window_prop_name_class_set(win, "ecore_test", "main");
    ecore_x_window_prop_protocol_set(win, ECORE_X_WM_PROTOCOL_DELETE_REQUEST, 1);
    ecore_x_window_show(win);




-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
SourceForge.net hosts over 70,000 Open Source Projects.
See the people who have HELPED US provide better services:
Click here: http://sourceforge.net/supporters.php
_______________________________________________
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to