compiler warnings fixed

This commit is contained in:
Uwe Rathmann 2017-12-07 14:59:29 +01:00
parent 0b3315d231
commit d94d510c59
2 changed files with 3 additions and 3 deletions

View File

@ -157,7 +157,7 @@ void Image::updatePolish()
}
if ( m_data->sourceSizeAdjustment )
setSourceSize( QSize( width(), height() ) );
setSourceSize( QSize( int( width() ), int( height() ) ) );
}
m_data->dirtyPolish = false;

View File

@ -3,8 +3,8 @@
* This file may be used under the terms of the QSkinny License, Version 1.0
*****************************************************************************/
#ifndef _IMAGE_H
#define _IMAGE_H
#ifndef IMAGE_H
#define IMAGE_H
#include "QskGlobal.h"