mirror of https://github.com/adamdruppe/arsd.git
Fix deprecation warnings for `body`.
This commit is contained in:
parent
0a3995a14d
commit
8bf86c5265
2
color.d
2
color.d
|
@ -1225,7 +1225,7 @@ alias extern(C) int function(scope const void*, scope const void*) @system Compa
|
||||||
IndexedImage quantize(in TrueColorImage img, Color[] palette = null, in int maxColors = 256)
|
IndexedImage quantize(in TrueColorImage img, Color[] palette = null, in int maxColors = 256)
|
||||||
// this is just because IndexedImage assumes ubyte palette values
|
// this is just because IndexedImage assumes ubyte palette values
|
||||||
in { assert(maxColors <= 256); }
|
in { assert(maxColors <= 256); }
|
||||||
body {
|
do {
|
||||||
int[Color] uses;
|
int[Color] uses;
|
||||||
foreach(pixel; img.imageData.colors) {
|
foreach(pixel; img.imageData.colors) {
|
||||||
if(auto i = pixel in uses) {
|
if(auto i = pixel in uses) {
|
||||||
|
|
|
@ -2009,7 +2009,7 @@ class SimpleWindow : CapableOfHandlingNativeEvent, CapableOfBeingDrawnUpon {
|
||||||
void opacity(double opacity) @property
|
void opacity(double opacity) @property
|
||||||
in {
|
in {
|
||||||
assert(opacity >= 0 && opacity <= 1);
|
assert(opacity >= 0 && opacity <= 1);
|
||||||
} body {
|
} do {
|
||||||
version (Windows) {
|
version (Windows) {
|
||||||
impl.setOpacity(cast(ubyte)(255 * opacity));
|
impl.setOpacity(cast(ubyte)(255 * opacity));
|
||||||
} else version (X11) {
|
} else version (X11) {
|
||||||
|
@ -16705,7 +16705,7 @@ class ExperimentalTextComponent2 {
|
||||||
this(Color f, Color b, OperatingSystemFont font, ubyte attr, const(char)[] c)
|
this(Color f, Color b, OperatingSystemFont font, ubyte attr, const(char)[] c)
|
||||||
in { assert(font !is null);
|
in { assert(font !is null);
|
||||||
assert(!font.isNull); }
|
assert(!font.isNull); }
|
||||||
body
|
do
|
||||||
{
|
{
|
||||||
this.foreground = f;
|
this.foreground = f;
|
||||||
this.background = b;
|
this.background = b;
|
||||||
|
|
Loading…
Reference in New Issue