summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel Friesel <derf@derf.homelinux.org>2010-06-24 16:11:45 +0200
committerDaniel Friesel <derf@derf.homelinux.org>2010-06-24 16:11:45 +0200
commitfa90c79fe33e9a016dd9d8117fcd7031303b5587 (patch)
tree3dffd039696050b2c75a2fbfc4534745b527e691 /src
parentc27ffd2d82fe9b3311c4f097f63289fccbf260c1 (diff)
Remove unused function winwidget_count
Diffstat (limited to 'src')
-rw-r--r--src/winwidget.c5
-rw-r--r--src/winwidget.h1
2 files changed, 0 insertions, 6 deletions
diff --git a/src/winwidget.c b/src/winwidget.c
index 3172086..b59c98b 100644
--- a/src/winwidget.c
+++ b/src/winwidget.c
@@ -698,11 +698,6 @@ void winwidget_show(winwidget winwid)
return;
}
-int winwidget_count(void)
-{
- return(window_num);
-}
-
void winwidget_move(winwidget winwid, int x, int y)
{
if (winwid && ((winwid->x != x) || (winwid->y != y))) {
diff --git a/src/winwidget.h b/src/winwidget.h
index a856475..68b2c76 100644
--- a/src/winwidget.h
+++ b/src/winwidget.h
@@ -130,7 +130,6 @@ void winwidget_setup_pixmaps(winwidget winwid);
void winwidget_update_title(winwidget ret);
void winwidget_rerender_all(int resize, int alias);
void winwidget_destroy_xwin(winwidget winwid);
-int winwidget_count(void);
void winwidget_set_pointer(winwidget winwid, int visible);