Explorar o código

Merge branch 'fix-unused-parameter-warning'

* fix-unused-parameter-warning:
  Fix unused parameter warning in ctkLayoutViewFactory
Jean-Christophe Fillion-Robin %!s(int64=10) %!d(string=hai) anos
pai
achega
0eb3ac8790
Modificáronse 1 ficheiros con 1 adicións e 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;
     }
 };