summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2011-09-03 09:10:23 +0200
committerDaniel Friesel <derf@finalrewind.org>2011-09-03 09:10:23 +0200
commit4be3cf72f8f936e51c98b6eb056410dfb589fd2f (patch)
tree3ff68ec0d49bcb55b4be84045a961c59589c58d5
parentfd6326c2d169a80ceda2c202d5ef4c17cd60e3c9 (diff)
Rename support.c to wallpaper.c
-rw-r--r--src/main.c2
-rw-r--r--src/menu.c2
-rw-r--r--src/wallpaper.c (renamed from src/support.c)4
-rw-r--r--src/wallpaper.h (renamed from src/support.h)6
4 files changed, 7 insertions, 7 deletions
diff --git a/src/main.c b/src/main.c
index 6b28e52..230b91f 100644
--- a/src/main.c
+++ b/src/main.c
@@ -30,7 +30,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#include "timers.h"
#include "options.h"
#include "events.h"
-#include "support.h"
+#include "wallpaper.h"
char **cmdargv = NULL;
int cmdargc = 0;
diff --git a/src/menu.c b/src/menu.c
index 57d539e..50aa50f 100644
--- a/src/menu.c
+++ b/src/menu.c
@@ -25,8 +25,8 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include "feh.h"
-#include "support.h"
#include "thumbnail.h"
+#include "wallpaper.h"
#include "winwidget.h"
#include "filelist.h"
#include "options.h"
diff --git a/src/support.c b/src/wallpaper.c
index 7c3ab89..afc548e 100644
--- a/src/support.c
+++ b/src/wallpaper.c
@@ -1,4 +1,4 @@
-/* support.c
+/* wallpaper.c
Copyright (C) 1999-2003 Tom Gilbert.
Copyright (C) 2010-2011 Daniel Friesel.
@@ -27,7 +27,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#include "feh.h"
#include "filelist.h"
#include "options.h"
-#include "support.h"
+#include "wallpaper.h"
#include <limits.h>
Window ipc_win = None;
Window my_ipc_win = None;
diff --git a/src/support.h b/src/wallpaper.h
index 3cd0fe1..c79a1dc 100644
--- a/src/support.h
+++ b/src/wallpaper.h
@@ -1,4 +1,4 @@
-/* support.h
+/* wallpaper.h
Copyright (C) 1999-2003 Tom Gilbert.
Copyright (C) 2010-2011 Daniel Friesel.
@@ -24,8 +24,8 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-#ifndef SUPPORT_H
-#define SUPPORT_H
+#ifndef WALLPAPER_H
+#define WALLPAPER_H
#include <X11/Xfuncproto.h>
#include <X11/Intrinsic.h> /* Xlib, Xutil, Xresource, Xfuncproto */