Explorar el Código

Fix unused parameter warning in ctkLayoutViewFactory

Jean-Christophe Fillion-Robin hace 10 años
padre
commit
82dd125482
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      Libs/Widgets/ctkLayoutViewFactory.h

+ 1 - 0
Libs/Widgets/ctkLayoutViewFactory.h

@@ -180,6 +180,7 @@ public:
     this->setUseCachedViews(true);
   }
   virtual QWidget* createViewFromXML(QDomElement layoutElement){
+    Q_UNUSED(layoutElement);
     return new T;
     }
 };