Fix some coverity warnings (not initialized members). Add comments. Better (more informative) title in dialog to download .pretty libs.

This commit is contained in:
jean-pierre charras
2015-02-26 11:33:15 +01:00
parent dbdadbf519
commit 10d67ffbd9
17 changed files with 66 additions and 13 deletions
+1
View File
@@ -58,6 +58,7 @@ BITMAP_BASE::BITMAP_BASE( const wxPoint& pos )
BITMAP_BASE::BITMAP_BASE( const BITMAP_BASE& aSchBitmap )
{
m_Scale = aSchBitmap.m_Scale;
m_ppi = aSchBitmap.m_ppi;
m_pixelScaleFactor = aSchBitmap.m_pixelScaleFactor;
m_image = new wxImage( *aSchBitmap.m_image );
m_bitmap = new wxBitmap( *m_image );