This should fix0r it

SVN revision: 5825
This commit is contained in:
boris 2002-01-10 20:14:30 +00:00 committed by boris
parent 84d0e5b50a
commit 634bf1692c
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
%{ header %{
#include "Ecore.h" #include "Ecore.h"
#include "desktops.h" #include "desktops.h"
@ -49,13 +49,13 @@ namespace e {
function get_current_desktop() function get_current_desktop()
%{ %{
int retval = e_desktops_get_current(); int retval = e_desktops_get_current();
FE_RETURN_INT( retval ); FE_RETURN_LONG( retval );
%} %}
function get_desktop_count() function get_desktop_count()
%{ %{
int retval = e_desktops_get_num(); int retval = e_desktops_get_num();
FE_RETURN_INT( retval ); FE_RETURN_LONG( retval );
%} %}
function get_width(); function get_width();