From 4be3cf72f8f936e51c98b6eb056410dfb589fd2f Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Sat, 3 Sep 2011 09:10:23 +0200 Subject: [PATCH] Rename support.c to wallpaper.c --- src/main.c | 2 +- src/menu.c | 2 +- src/{support.c => wallpaper.c} | 4 ++-- src/{support.h => wallpaper.h} | 6 +++--- 4 files changed, 7 insertions(+), 7 deletions(-) rename src/{support.c => wallpaper.c} (99%) rename src/{support.h => wallpaper.h} (97%) 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 similarity index 99% rename from src/support.c rename to 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 Window ipc_win = None; Window my_ipc_win = None; diff --git a/src/support.h b/src/wallpaper.h similarity index 97% rename from src/support.h rename to 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 #include /* Xlib, Xutil, Xresource, Xfuncproto */ -- GitLab