typo fix!
authorraster <raster@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 29 Jan 2010 11:06:32 +0000 (11:06 +0000)
committerraster <raster@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 29 Jan 2010 11:06:32 +0000 (11:06 +0000)
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@45702 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/ecore_evas/ecore_evas_x.c
src/lib/ecore_x/Ecore_X.h
src/lib/ecore_x/xlib/ecore_x_icccm.c

index a83765d..517625e 100644 (file)
@@ -33,7 +33,7 @@ _ecore_evas_x_protocols_set(Ecore_Evas *ee)
    protos[num++] = ECORE_X_ATOM_NET_WM_PING;
    if (ee->func.fn_delete_request)
      protos[num++] = ECORE_X_ATOM_WM_DELETE_WINDOW;
-   ecore_x_icccom_protocol_atoms_set(ee->prop.window, protos, num);
+   ecore_x_icccm_protocol_atoms_set(ee->prop.window, protos, num);
 }
 
 #ifdef HAVE_ECORE_X_XCB
index 9c864f4..61845dc 100644 (file)
@@ -1386,7 +1386,7 @@ EAPI int   ecore_x_icccm_size_pos_hints_get(Ecore_X_Window win,
                                            double *max_aspect);
 EAPI void  ecore_x_icccm_title_set(Ecore_X_Window win, const char *t);
 EAPI char *ecore_x_icccm_title_get(Ecore_X_Window win);
-EAPI void  ecore_x_icccom_protocol_atoms_set(Ecore_X_Window win,
+EAPI void  ecore_x_icccm_protocol_atoms_set(Ecore_X_Window win,
                                              Ecore_X_Atom *protos, int num);
 EAPI void  ecore_x_icccm_protocol_set(Ecore_X_Window win,
                                      Ecore_X_WM_Protocol protocol,
index 7905941..b8728f7 100644 (file)
@@ -501,7 +501,7 @@ ecore_x_icccm_title_get(Ecore_X_Window win)
  * @param num the number of members of the array
  */
 EAPI void
-ecore_x_icccom_protocol_atoms_set(Ecore_X_Window win, Ecore_X_Atom *protos, int num)
+ecore_x_icccm_protocol_atoms_set(Ecore_X_Window win, Ecore_X_Atom *protos, int num)
 {
    if (num > 0)
      XSetWMProtocols(_ecore_x_disp, win, (Atom *)(protos), num);