Part: modernize C++: replace 'typedef' with 'using'

This commit is contained in:
wmayer
2022-08-29 19:31:50 +02:00
parent 57ca9f6b1f
commit ad7375380a
30 changed files with 58 additions and 58 deletions

View File

@@ -45,8 +45,8 @@ protected:
std::map<const App::Property*, Gui::ViewProvider*> propView;
};
typedef Gui::ViewProviderPythonFeatureT<ViewProviderPart> ViewProviderPython;
typedef Gui::ViewProviderPythonFeatureT<ViewProviderCustom> ViewProviderCustomPython;
using ViewProviderPython = Gui::ViewProviderPythonFeatureT<ViewProviderPart>;
using ViewProviderCustomPython = Gui::ViewProviderPythonFeatureT<ViewProviderCustom>;
} // namespace PartGui