From 0672e9e0cff2ceeee52bf9e6bcf8e440312136f5 Mon Sep 17 00:00:00 2001 From: Liang Chang Date: Sun, 17 Oct 2021 08:56:15 -0600 Subject: [PATCH] DtHelp: use libXpm directly. --- cde/lib/DtHelp/Graphics.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cde/lib/DtHelp/Graphics.c b/cde/lib/DtHelp/Graphics.c index 6c0ab1198..dae2174df 100644 --- a/cde/lib/DtHelp/Graphics.c +++ b/cde/lib/DtHelp/Graphics.c @@ -99,7 +99,7 @@ static char rcs_id[]="$XConsortium: Graphics.c /main/23 1996/12/06 11:12:54 cde- #include #include #include
-#include
+#include #include "bufioI.h" #include "Access.h" @@ -1681,11 +1681,11 @@ myXpmReadFileToPixmap( if (stream->type == _DtGrFILE) { if (stream->source.file.uncompressed_filename != NULL) - ErrorStatus = _DtXpmReadFileToImage(display, + ErrorStatus = XpmReadFileToImage(display, stream->source.file.uncompressed_filename, imageptr, shapeimageptr, attributes); else - ErrorStatus = _DtXpmReadFileToImage(display, + ErrorStatus = XpmReadFileToImage(display, stream->source.file.filename, imageptr, shapeimageptr, attributes); }