Explorar o código

Fix warning in ctkDoubleSlider::eventFilter

Julien Finet %!s(int64=13) %!d(string=hai) anos
pai
achega
9cb864ff69
Modificáronse 1 ficheiros con 2 adicións e 1 borrados
  1. 2 1
      Libs/Widgets/ctkDoubleSlider.cpp

+ 2 - 1
Libs/Widgets/ctkDoubleSlider.cpp

@@ -445,9 +445,10 @@ bool ctkDoubleSlider::eventFilter(QObject* watched, QEvent* event)
           return true;
           }
         }
+      default:
+        break;
       }
     }
   return this->Superclass::eventFilter(watched, event);
 }
 
-