Sfoglia il codice sorgente

Fix unused-variable warning in ctkLayoutViewFactory::createViewFromXML

This commit fixes warning introduced by 02fa38b
Jean-Christophe Fillion-Robin 10 anni fa
parent
commit
f151e7aeaf
1 ha cambiato i file con 1 aggiunte e 0 eliminazioni
  1. 1 0
      Libs/Widgets/ctkLayoutViewFactory.cpp

+ 1 - 0
Libs/Widgets/ctkLayoutViewFactory.cpp

@@ -153,6 +153,7 @@ QWidget* ctkLayoutViewFactory::viewFromXML(QDomElement layoutElement)
 //-----------------------------------------------------------------------------
 QWidget* ctkLayoutViewFactory::createViewFromXML(QDomElement layoutElement)
 {
+  Q_UNUSED(layoutElement);
   return 0;
 }