]> granicus.if.org Git - graphviz/commitdiff
fix some #includes in the Quartz plugin
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 25 Oct 2020 20:50:46 +0000 (13:50 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 1 Nov 2020 00:03:25 +0000 (17:03 -0700)
This reverts part of d80f685dbacc2cfa3e496415739b4d6cfad32233 that incorrectly
updated paths to the header gvplugin_quartz.h. This mistake was not detected at
the time as we did not have macOS CI. Thanks to Stephen for picking this up.
Related to #1785.

plugin/quartz/gvplugin_quartz.c
plugin/quartz/gvtextlayout_quartz.c

index 24977b916bd3eb5f3f5e71105f833dec860496eb..55e2a3305b7037dd23a23a5a39321935a8f2b3fe 100644 (file)
@@ -15,7 +15,7 @@
 
 #include <common/types.h>
 #include <gvc/gvplugin.h>
-#include <gvc/gvplugin_quartz.h>
+#include "gvplugin_quartz.h"
 #include <gvc/gvio.h>
 
 extern gvplugin_installed_t gvrender_quartz_types;
index 2d9e17d24696b5c5b31630679ea9d0ccdc089648..21370f809d51d62a3dc292992b4482fdf6e4a25d 100644 (file)
@@ -17,7 +17,7 @@
 #include <string.h>
 
 #include <gvc/gvplugin_textlayout.h>
-#include <gvc/gvplugin_quartz.h>
+#include "gvplugin_quartz.h"
 
 #if __ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__ >= 30200
 #include <CoreText/CoreText.h>