]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
*** empty log message ***
authorvsr <vsr@opencascade.com>
Tue, 31 Jul 2007 10:38:12 +0000 (10:38 +0000)
committervsr <vsr@opencascade.com>
Tue, 31 Jul 2007 10:38:12 +0000 (10:38 +0000)
src/Qtx/Qtx.cxx

index 89d87060da3ceb386847ac8c5d5f724bf8c92a21..be51ce08a95eba741c32a94158690920793fa451 100755 (executable)
@@ -700,7 +700,7 @@ QPixmap Qtx::scaleIcon( const QPixmap& icon, const unsigned w, const unsigned h
 {
   QPixmap p;
   int aw = w, ah = h <= 0 ? w : h;
-  if ( p.isNull() || aw <= 0 || ah <= 0 || aw == icon.width() && ah == icon.height() )
+  if ( icon.isNull() || aw <= 0 || ah <= 0 || aw == icon.width() && ah == icon.height() )
     p = icon;
   else
     p = icon.fromImage( icon.toImage().scaled( aw, ah, Qt::KeepAspectRatio, Qt::SmoothTransformation ) );