[Pkg-wmaker-commits] [wmcliphist] 09/49: wmcliphist: Switch from angled brackets to quotes for local includes.

Doug Torrance dtorrance-guest at moszumanska.debian.org
Tue Aug 18 01:51:34 UTC 2015


This is an automated email from the git hooks/post-receive script.

dtorrance-guest pushed a commit to branch master
in repository wmcliphist.

commit 30ef012e2d98dde66d8e276b09c4929be51e4a8c
Author: Doug Torrance <dtorrance at monmouthcollege.edu>
Date:   Sat Nov 22 20:48:41 2014 -0600

    wmcliphist: Switch from angled brackets to quotes for local includes.
---
 Makefile     |  2 +-
 clipboard.c  |  2 +-
 gui.c        |  2 +-
 history.c    |  2 +-
 hotkeys.c    |  2 +-
 rcconfig.c   |  2 +-
 utils.c      |  2 +-
 wmcliphist.c | 30 +++++++++++++++---------------
 wmcliphist.h |  4 ++--
 9 files changed, 24 insertions(+), 24 deletions(-)

diff --git a/Makefile b/Makefile
index c8ba5a9..2baafa7 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
 CC ?= gcc
 PREFIX = /usr/local
-INCLUDES = `pkg-config --cflags gtk+-2.0 x11` -I. -Ifoodock
+INCLUDES = `pkg-config --cflags gtk+-2.0 x11`
 
 # for normal use
 CFLAGS += -Wall -ansi -pedantic $(INCLUDES)
diff --git a/clipboard.c b/clipboard.c
index b39b915..ad341f7 100644
--- a/clipboard.c
+++ b/clipboard.c
@@ -1,4 +1,4 @@
-#include <wmcliphist.h>
+#include "wmcliphist.h"
 #include <time.h>
 
 /* when true, clipboard will be automatically taken up by wmcliphist */
diff --git a/gui.c b/gui.c
index 55bda91..beee837 100644
--- a/gui.c
+++ b/gui.c
@@ -1,4 +1,4 @@
-#include <wmcliphist.h>
+#include "wmcliphist.h"
 #include <gdk/gdkkeysyms.h>
 
 
diff --git a/history.c b/history.c
index d4db3ad..43a0878 100644
--- a/history.c
+++ b/history.c
@@ -1,4 +1,4 @@
-#include <wmcliphist.h>
+#include "wmcliphist.h"
 
 
 int	autosave_period = 120;
diff --git a/hotkeys.c b/hotkeys.c
index 890c089..ae412dd 100644
--- a/hotkeys.c
+++ b/hotkeys.c
@@ -1,4 +1,4 @@
-#include <wmcliphist.h>
+#include "wmcliphist.h"
 #include <gdk/gdkkeysyms.h>
 
 /* Exec on hotkey? */
diff --git a/rcconfig.c b/rcconfig.c
index 388793c..1f2cf46 100644
--- a/rcconfig.c
+++ b/rcconfig.c
@@ -1,4 +1,4 @@
-#include <wmcliphist.h>
+#include "wmcliphist.h"
 #include <sys/stat.h>
 
 #define	RC_BUF_SIZE	256
diff --git a/utils.c b/utils.c
index 7a88962..070a3d1 100644
--- a/utils.c
+++ b/utils.c
@@ -1,4 +1,4 @@
-#include <wmcliphist.h>
+#include "wmcliphist.h"
 
 /*
  * converts text in UTF-8 to charset by actual locale
diff --git a/wmcliphist.c b/wmcliphist.c
index f038251..32ddc8a 100644
--- a/wmcliphist.c
+++ b/wmcliphist.c
@@ -2,25 +2,25 @@
  * (c) 2001 Michal Krause <michal at krause.cz>
  */
 
-#include <wmcliphist.h>
+#include "wmcliphist.h"
 
-#include <icon/ico_60x60_mask.xbm>
-#include <icon/ico_60x60_black.xpm>
-#include <icon/ico_60x60_white.xpm>
-#include <icon/ico_60x60_gray.xpm>
+#include "icon/ico_60x60_mask.xbm"
+#include "icon/ico_60x60_black.xpm"
+#include "icon/ico_60x60_white.xpm"
+#include "icon/ico_60x60_gray.xpm"
 
-#include <icon/ico_40x40_mask.xbm>
-#include <icon/ico_40x40_black.xpm>
-#include <icon/ico_40x40_white.xpm>
-#include <icon/ico_40x40_gray.xpm>
+#include "icon/ico_40x40_mask.xbm"
+#include "icon/ico_40x40_black.xpm"
+#include "icon/ico_40x40_white.xpm"
+#include "icon/ico_40x40_gray.xpm"
 
-#include <icon/ico_30x30_mask.xbm>
-#include <icon/ico_30x30_black.xpm>
-#include <icon/ico_30x30_white.xpm>
-#include <icon/ico_30x30_gray.xpm>
+#include "icon/ico_30x30_mask.xbm"
+#include "icon/ico_30x30_black.xpm"
+#include "icon/ico_30x30_white.xpm"
+#include "icon/ico_30x30_gray.xpm"
 
-#include <icon/ico_16x16_mask.xbm>
-#include <icon/ico_16x16.xpm>
+#include "icon/ico_16x16_mask.xbm"
+#include "icon/ico_16x16.xpm"
 
 /*
  * print some help
diff --git a/wmcliphist.h b/wmcliphist.h
index c55cdc2..bd23c9c 100644
--- a/wmcliphist.h
+++ b/wmcliphist.h
@@ -20,9 +20,9 @@
 #include <gdk/gdk.h>
 #include <gdk/gdkx.h>
 
-#include <foodock.h>
+#include "foodock/foodock.h"
 
-#include <debug.h>
+#include "debug.h"
 
 
 #define	VERSION			0x0003

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-wmaker/wmcliphist.git



More information about the Pkg-wmaker-commits mailing list