]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
Werror
authoradam <adam>
Tue, 2 Feb 2010 11:03:30 +0000 (11:03 +0000)
committeradam <adam>
Tue, 2 Feb 2010 11:03:30 +0000 (11:03 +0000)
src/QDS/QDS_ComboBox.cxx
src/Qtx/QtxDockWidget.cxx

index e7c2890272e98192e327af81eae9a4b527247e8f..a2a26f27956e50f42df9147946607d005fe43496 100644 (file)
@@ -335,7 +335,6 @@ void QDS_ComboBox::setValues( const QStringList& names )
 */
 void QDS_ComboBox::reset()
 {
-  int id = -1;
   QString aDefValue = defaultValue();
   if ( !aDefValue.isEmpty() )
     setString( aDefValue );
index a7adfc5d11932c3b62de1b9252232d3d9751f919..1adcca765a208edbd0d13038041cc66c97549d35 100644 (file)
@@ -218,13 +218,13 @@ void QtxDockWidget::Watcher::hideContainer()
 */
 void QtxDockWidget::Watcher::customEvent( QEvent* e )
 {
-  if ( e->type() == Update )
+  if ( e->type() == (QEvent::Type)Update )
   {
     updateIcon();
     updateCaption();
     updateVisibility();
   }
-  else if ( myCont && e->type() == Remove && !myCont->widget() )
+  else if ( myCont && e->type() == (QEvent::Type)Remove && !myCont->widget() )
   {
     myCont->deleteLater();
     myCont = 0;