projects
/
paraslash.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
77bd80f
)
gui_theme: Make set_theme() static.
author
Andre Noll
<maan@systemlinux.org>
Mon, 21 Feb 2011 20:32:14 +0000
(21:32 +0100)
committer
Andre Noll
<maan@systemlinux.org>
Mon, 21 Feb 2011 20:32:14 +0000
(21:32 +0100)
gui_theme.c
patch
|
blob
|
history
diff --git
a/gui_theme.c
b/gui_theme.c
index
5976a0e
..
ffa5d79
100644
(file)
--- a/
gui_theme.c
+++ b/
gui_theme.c
@@
-377,7
+377,7
@@
struct theme_description themes[] = {
static int current_theme_num;
-void set_theme(int num, struct gui_theme *t)
+
static
void set_theme(int num, struct gui_theme *t)
{
int i;
FOR_EACH_STATUS_ITEM(i)
@@
-412,4
+412,3
@@
void next_theme(struct gui_theme *t)
{
return set_theme(--current_theme_num, t);
}
-