Pārlūkot izejas kodu

Merge branch 'fix-unused-parameter-warning'

* fix-unused-parameter-warning:
  Fix unused parameter warning in ctkLayoutViewFactory
Jean-Christophe Fillion-Robin 10 gadi atpakaļ
vecāks
revīzija
0eb3ac8790
1 mainītis faili ar 1 papildinājumiem un 0 dzēšanām
  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;
     }
 };