ecore: We can't really use index as variable as it is already in use.

A bit annoying I know. But ignoring all this shadowing global declaritions might bring us into
trouble.

SVN revision: 71457
This commit is contained in:
Stefan Schmidt 2012-05-28 13:08:38 +00:00
parent 925c4b2ff0
commit 7912d00e32
1 changed files with 2 additions and 2 deletions

View File

@ -820,9 +820,9 @@ ecore_x_screen_index_get(const Ecore_X_Screen *screen)
* @since 1.1
*/
EAPI Ecore_X_Screen *
ecore_x_screen_get(int index)
ecore_x_screen_get(int idx)
{
return XScreenOfDisplay(_ecore_x_disp, index);
return XScreenOfDisplay(_ecore_x_disp, idx);
}
/**