Rename FrameworkWidgetFactory to ViewFactory

We now deal in views instead of widgets, and the "Framework"
part was redundant. It's also shorter now
This commit is contained in:
Sergio Martins
2022-05-18 23:12:43 +01:00
parent aefbbd5738
commit e514a8c3e1
13 changed files with 23 additions and 23 deletions

View File

@@ -170,7 +170,7 @@ int main(int argc, char **argv)
// }
if (parser.isSet(segmentedIndicators))
KDDockWidgets::FrameworkWidgetFactory::s_dropIndicatorType = KDDockWidgets::DropIndicatorType::Segmented;
KDDockWidgets::ViewFactory::s_dropIndicatorType = KDDockWidgets::DropIndicatorType::Segmented;
MainWindowOptions options = MainWindowOption_None;
auto flags = KDDockWidgets::Config::self().flags();
@@ -196,7 +196,7 @@ int main(int argc, char **argv)
flags |= KDDockWidgets::Config::Flag_NativeTitleBar;
if (parser.isSet(noDropIndicators))
KDDockWidgets::FrameworkWidgetFactory::s_dropIndicatorType = KDDockWidgets::DropIndicatorType::None;
KDDockWidgets::ViewFactory::s_dropIndicatorType = KDDockWidgets::DropIndicatorType::None;
#if defined(Q_OS_WIN)
if (parser.isSet(noAeroSnap))