src/tools/uic3/uic.cpp
changeset 3 41300fa6a67c
parent 0 1918ee327afb
child 4 3b1da2848fc7
equal deleted inserted replaced
2:56cd8111b7f7 3:41300fa6a67c
   320         || customWidgetsInfo()->extends(className, QLatin1String("QMdiArea"))
   320         || customWidgetsInfo()->extends(className, QLatin1String("QMdiArea"))
   321         || customWidgetsInfo()->extends(className, QLatin1String("QWizard"))
   321         || customWidgetsInfo()->extends(className, QLatin1String("QWizard"))
   322         || customWidgetsInfo()->extends(className, QLatin1String("QDockWidget"));
   322         || customWidgetsInfo()->extends(className, QLatin1String("QDockWidget"));
   323 }
   323 }
   324 
   324 
       
   325 bool Uic::isCustomWidgetContainer(const QString &className) const
       
   326 {
       
   327     return customWidgetsInfo()->isCustomWidgetContainer(className);
       
   328 }
       
   329 
   325 bool Uic::isStatusBar(const QString &className) const
   330 bool Uic::isStatusBar(const QString &className) const
   326 {
   331 {
   327     return customWidgetsInfo()->extends(className, QLatin1String("QStatusBar"));
   332     return customWidgetsInfo()->extends(className, QLatin1String("QStatusBar"));
   328 }
   333 }
   329 
   334