Browse Source

Fix warning in ctkDoubleSlider::eventFilter

Julien Finet 13 years ago
parent
commit
9cb864ff69
1 changed files with 2 additions and 1 deletions
  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);
 }
 
-