Move the drop indicators into Controllers namespace

This commit is contained in:
Sergio Martins
2022-05-18 04:24:16 +01:00
parent 7b486bb28c
commit 2b6c18dbcd
24 changed files with 67 additions and 38 deletions

View File

@@ -150,12 +150,12 @@ View *Platform_qtquick::createView(View *parent) const
return new Views::View_qtquick(nullptr, Type::None, Views::asQQuickItem(parent));
}
View *Platform_qtquick::createClassicDropIndicatorOverlayView(ClassicIndicators *, View *) const
View *Platform_qtquick::createClassicDropIndicatorOverlayView(Controllers::ClassicIndicators *, View *) const
{
return nullptr;
}
View *Platform_qtquick::createSegmentedDropIndicatorOverlayView(SegmentedIndicators *, View *) const
View *Platform_qtquick::createSegmentedDropIndicatorOverlayView(Controllers::SegmentedIndicators *, View *) const
{
return nullptr;
}