diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2011-08-30 17:00:21 -0400 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2011-09-01 13:41:47 -0400 |
commit | f28531a33d1f28bc86626b3013ef7857b564647f (patch) | |
tree | 031ea8f504ccadb5a4ac0ce3441889d034fd4669 /src | |
parent | 8b258c863c4f19c03378f33ca9bf37d31e402b21 (diff) |
Include Xaw3dP.h using #include <X11/Xaw3d/Xaw3dP.h>
All published Xaw3d header file are included this way.
The -I directive to include/X11/Xaw3d is removed which will alert
developers not to include header files with quotes unless they are in
the /src directory.
Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Diffstat (limited to 'src')
-rw-r--r-- | src/AsciiSrc.c | 2 | ||||
-rw-r--r-- | src/AsciiText.c | 2 | ||||
-rw-r--r-- | src/Command.c | 2 | ||||
-rw-r--r-- | src/Label.c | 2 | ||||
-rw-r--r-- | src/List.c | 2 | ||||
-rw-r--r-- | src/Makefile.am | 3 | ||||
-rw-r--r-- | src/MultiSrc.c | 2 | ||||
-rw-r--r-- | src/Paned.c | 2 | ||||
-rw-r--r-- | src/Scrollbar.c | 2 | ||||
-rw-r--r-- | src/Simple.c | 2 | ||||
-rw-r--r-- | src/SimpleMenu.c | 2 | ||||
-rw-r--r-- | src/Sme.c | 2 | ||||
-rw-r--r-- | src/SmeBSB.c | 2 | ||||
-rw-r--r-- | src/SmeThreeD.c | 2 | ||||
-rw-r--r-- | src/Text.c | 2 | ||||
-rw-r--r-- | src/TextAction.c | 2 | ||||
-rw-r--r-- | src/TextPop.c | 2 | ||||
-rw-r--r-- | src/TextSrc.c | 2 | ||||
-rw-r--r-- | src/ThreeD.c | 2 | ||||
-rw-r--r-- | src/Tip.c | 2 | ||||
-rw-r--r-- | src/Vendor.c | 2 | ||||
-rw-r--r-- | src/Xaw3dP.c | 2 |
22 files changed, 22 insertions, 23 deletions
diff --git a/src/AsciiSrc.c b/src/AsciiSrc.c index d14e0a0..0665cd3 100644 --- a/src/AsciiSrc.c +++ b/src/AsciiSrc.c @@ -30,7 +30,7 @@ in this Software without prior written authorization from the X Consortium. * */ -#include "Xaw3dP.h" +#include <X11/Xaw3d/Xaw3dP.h> #include <X11/IntrinsicP.h> #include <stdio.h> #include <ctype.h> diff --git a/src/AsciiText.c b/src/AsciiText.c index ff11be9..23843ac 100644 --- a/src/AsciiText.c +++ b/src/AsciiText.c @@ -65,7 +65,7 @@ SOFTWARE. * kit@expo.lcs.mit.edu */ -#include "Xaw3dP.h" +#include <X11/Xaw3d/Xaw3dP.h> #include <stdio.h> #include <X11/IntrinsicP.h> #include <X11/StringDefs.h> diff --git a/src/Command.c b/src/Command.c index 2012f27..ccde19b 100644 --- a/src/Command.c +++ b/src/Command.c @@ -50,7 +50,7 @@ SOFTWARE. * Command.c - Command button widget */ -#include "Xaw3dP.h" +#include <X11/Xaw3d/Xaw3dP.h> #include <stdio.h> #include <X11/IntrinsicP.h> #include <X11/StringDefs.h> diff --git a/src/Label.c b/src/Label.c index b3ecee9..ea885f7 100644 --- a/src/Label.c +++ b/src/Label.c @@ -51,7 +51,7 @@ SOFTWARE. * */ -#include "Xaw3dP.h" +#include <X11/Xaw3d/Xaw3dP.h> #include <X11/IntrinsicP.h> #include <X11/StringDefs.h> #include <X11/Xos.h> @@ -34,7 +34,7 @@ in this Software without prior written authorization from the X Consortium. * MIT X Consortium */ -#include "Xaw3dP.h" +#include <X11/Xaw3d/Xaw3dP.h> #include <stdio.h> #include <ctype.h> #include <X11/IntrinsicP.h> diff --git a/src/Makefile.am b/src/Makefile.am index f2a8267..e912004 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -7,8 +7,7 @@ AM_CFLAGS = \ $(XPM_CFLAGS) AM_CPPFLAGS = \ - -I${top_srcdir}/include \ - -I${top_srcdir}/include/X11/Xaw3d \ + -I${top_srcdir}/include \ $(XAW3D_CPPFLAGS) # diff --git a/src/MultiSrc.c b/src/MultiSrc.c index 5ca85cb..f142428 100644 --- a/src/MultiSrc.c +++ b/src/MultiSrc.c @@ -58,7 +58,7 @@ in this Software without prior written authorization from the X Consortium. * */ -#include "Xaw3dP.h" +#include <X11/Xaw3d/Xaw3dP.h> #include <X11/IntrinsicP.h> #include <X11/StringDefs.h> #include <X11/Xfuncs.h> diff --git a/src/Paned.c b/src/Paned.c index e72fd03..c7962c6 100644 --- a/src/Paned.c +++ b/src/Paned.c @@ -58,7 +58,7 @@ SOFTWARE. * kit@expo.lcs.mit.edu */ -#include "Xaw3dP.h" +#include <X11/Xaw3d/Xaw3dP.h> #include <X11/IntrinsicP.h> #include <X11/cursorfont.h> #include <X11/StringDefs.h> diff --git a/src/Scrollbar.c b/src/Scrollbar.c index 8173dac..7fba176 100644 --- a/src/Scrollbar.c +++ b/src/Scrollbar.c @@ -56,7 +56,7 @@ SOFTWARE. /* created by weissman, Mon Jul 7 13:20:03 1986 */ /* converted by swick, Thu Aug 27 1987 */ -#include "Xaw3dP.h" +#include <X11/Xaw3d/Xaw3dP.h> #include <X11/IntrinsicP.h> #include <X11/StringDefs.h> diff --git a/src/Simple.c b/src/Simple.c index 13f03a5..f5928b3 100644 --- a/src/Simple.c +++ b/src/Simple.c @@ -46,7 +46,7 @@ SOFTWARE. ******************************************************************/ -#include "Xaw3dP.h" +#include <X11/Xaw3d/Xaw3dP.h> #include <stdio.h> #include <X11/IntrinsicP.h> #include <X11/StringDefs.h> diff --git a/src/SimpleMenu.c b/src/SimpleMenu.c index df6633f..2dd31e8 100644 --- a/src/SimpleMenu.c +++ b/src/SimpleMenu.c @@ -38,7 +38,7 @@ in this Software without prior written authorization from the X Consortium. #include <X11/IntrinsicP.h> #include <X11/StringDefs.h> -#include "Xaw3dP.h" +#include <X11/Xaw3d/Xaw3dP.h> #include <X11/Xaw3d/XawInit.h> #include <X11/Xaw3d/SimpleMenP.h> #include <X11/Xaw3d/SmeBSBP.h> @@ -33,7 +33,7 @@ in this Software without prior written authorization from the X Consortium. * kit@expo.lcs.mit.edu */ -#include "Xaw3dP.h" +#include <X11/Xaw3d/Xaw3dP.h> #include <stdio.h> #include <X11/IntrinsicP.h> #include <X11/StringDefs.h> diff --git a/src/SmeBSB.c b/src/SmeBSB.c index d3c304b..24bac63 100644 --- a/src/SmeBSB.c +++ b/src/SmeBSB.c @@ -38,7 +38,7 @@ in this Software without prior written authorization from the X Consortium. * kit@expo.lcs.mit.edu */ -#include "Xaw3dP.h" +#include <X11/Xaw3d/Xaw3dP.h> #include <X11/IntrinsicP.h> #include <X11/StringDefs.h> #include <X11/Xos.h> diff --git a/src/SmeThreeD.c b/src/SmeThreeD.c index 9c1d9eb..095677c 100644 --- a/src/SmeThreeD.c +++ b/src/SmeThreeD.c @@ -23,7 +23,7 @@ SOFTWARE. ******************************************************************/ -#include "Xaw3dP.h" +#include <X11/Xaw3d/Xaw3dP.h> #include <X11/Xlib.h> #include <X11/StringDefs.h> #include <X11/IntrinsicP.h> @@ -46,7 +46,7 @@ SOFTWARE. ******************************************************************/ -#include "Xaw3dP.h" +#include <X11/Xaw3d/Xaw3dP.h> #include <X11/IntrinsicP.h> #include <X11/StringDefs.h> #include <X11/Shell.h> diff --git a/src/TextAction.c b/src/TextAction.c index 14cc961..e600996 100644 --- a/src/TextAction.c +++ b/src/TextAction.c @@ -25,7 +25,7 @@ in this Software without prior written authorization from the X Consortium. */ -#include "Xaw3dP.h" +#include <X11/Xaw3d/Xaw3dP.h> #include <X11/IntrinsicP.h> #include <X11/StringDefs.h> #include <X11/Xutil.h> diff --git a/src/TextPop.c b/src/TextPop.c index c7ed8b0..cf94074 100644 --- a/src/TextPop.c +++ b/src/TextPop.c @@ -46,7 +46,7 @@ in this Software without prior written authorization from the X Consortium. * *************************************************************/ -#include "Xaw3dP.h" +#include <X11/Xaw3d/Xaw3dP.h> #include <X11/IntrinsicP.h> #include <X11/StringDefs.h> #include <X11/Shell.h> diff --git a/src/TextSrc.c b/src/TextSrc.c index ff57210..ed9bc3f 100644 --- a/src/TextSrc.c +++ b/src/TextSrc.c @@ -35,7 +35,7 @@ in this Software without prior written authorization from the X Consortium. * */ -#include "Xaw3dP.h" +#include <X11/Xaw3d/Xaw3dP.h> #include <X11/IntrinsicP.h> #include <X11/StringDefs.h> #include <X11/Xutil.h> diff --git a/src/ThreeD.c b/src/ThreeD.c index 48b25ad..04273cc 100644 --- a/src/ThreeD.c +++ b/src/ThreeD.c @@ -28,7 +28,7 @@ SOFTWARE. * Rights, permissions, and disclaimer per the above DEC/MIT license. */ -#include "Xaw3dP.h" +#include <X11/Xaw3d/Xaw3dP.h> #include <X11/Xlib.h> #include <X11/StringDefs.h> #include <X11/IntrinsicP.h> @@ -32,7 +32,7 @@ * Rights, permissions, and disclaimer per the above XFree86 license. */ -#include "Xaw3dP.h" +#include <X11/Xaw3d/Xaw3dP.h> #include <X11/IntrinsicP.h> #include <X11/StringDefs.h> #include <X11/Xos.h> diff --git a/src/Vendor.c b/src/Vendor.c index 45dbb27..42d1853 100644 --- a/src/Vendor.c +++ b/src/Vendor.c @@ -60,7 +60,7 @@ SOFTWARE. /* Make sure all wm properties can make it out of the resource manager */ -#include "Xaw3dP.h" +#include <X11/Xaw3d/Xaw3dP.h> #include <stdio.h> #include <X11/IntrinsicP.h> #include <X11/StringDefs.h> diff --git a/src/Xaw3dP.c b/src/Xaw3dP.c index 2711401..0a9ece3 100644 --- a/src/Xaw3dP.c +++ b/src/Xaw3dP.c @@ -27,7 +27,7 @@ CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. *********************************************************************/ -#include "Xaw3dP.h" +#include <X11/Xaw3d/Xaw3dP.h> #ifdef XAW_MULTIPLANE_PIXMAPS #include <stdio.h> #include <X11/xpm.h> |