From d5c5bce72040af804a00a014cbce453588b7b231 Mon Sep 17 00:00:00 2001 From: Neil Date: Mon, 13 Jul 2020 09:59:46 +1000 Subject: Minor warning fixes. 0 -> nullptr and static_cast -> dynamic_cast. --- qt/ScintillaEditBase/PlatQt.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'qt/ScintillaEditBase/PlatQt.cpp') diff --git a/qt/ScintillaEditBase/PlatQt.cpp b/qt/ScintillaEditBase/PlatQt.cpp index 43e15563f..b09812236 100644 --- a/qt/ScintillaEditBase/PlatQt.cpp +++ b/qt/ScintillaEditBase/PlatQt.cpp @@ -214,7 +214,7 @@ void SurfaceImpl::InitPixMap(int width, if (height < 1) height = 1; deviceOwned = true; device = new QPixmap(width, height); - SurfaceImpl *psurfOther = static_cast(surface); + SurfaceImpl *psurfOther = dynamic_cast(surface); SetUnicodeMode(psurfOther->unicodeMode); SetDBCSMode(psurfOther->codePage); } @@ -320,7 +320,7 @@ void SurfaceImpl::FillRectangle(PRectangle rc, ColourDesired back) void SurfaceImpl::FillRectangle(PRectangle rc, Surface &surfacePattern) { // Tile pattern over rectangle - SurfaceImpl *surface = static_cast(&surfacePattern); + SurfaceImpl *surface = dynamic_cast(&surfacePattern); // Currently assumes 8x8 pattern int widthPat = 8; int heightPat = 8; @@ -432,7 +432,7 @@ void SurfaceImpl::Ellipse(PRectangle rc, void SurfaceImpl::Copy(PRectangle rc, Point from, Surface &surfaceSource) { - SurfaceImpl *source = static_cast(&surfaceSource); + SurfaceImpl *source = dynamic_cast(&surfaceSource); QPixmap *pixmap = static_cast(source->GetPaintDevice()); GetPainter()->drawPixmap(rc.left, rc.top, *pixmap, from.x, from.y, -1, -1); -- cgit v1.2.3