From e12846e996e79323635d64405248854ac66b08bc Mon Sep 17 00:00:00 2001 From: Elias Batek Date: Wed, 24 Apr 2024 22:17:06 +0200 Subject: [PATCH] Publicly import simpledisplay from pixmappresenter Looks like a convenience feature, *but* - more imporantly - this prevents certain symbol name clashes from occurring in common user-code. --- pixmappresenter.d | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/pixmappresenter.d b/pixmappresenter.d index 486996d..8949637 100644 --- a/pixmappresenter.d +++ b/pixmappresenter.d @@ -158,7 +158,18 @@ module arsd.pixmappresenter; import arsd.core; -import arsd.simpledisplay; + +/++ + While publicly importing `arsd.simpledisplay` is not actually necessary, + most real-world code would eventually import said module as well anyway. + + More importantly, this public import prevents users from facing certain + symbol clashes in their code that would occur in modules importing both + `pixmappresenter` and `simpledisplay`. + For instance both of these modules happen to define different types + as `Pixmap`. + +/ +public import arsd.simpledisplay; /// public import arsd.pixmappaint;