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

This commit is contained in:
wmayer
2022-08-29 23:13:16 +02:00
parent 80d7af9f05
commit 138629633f
14 changed files with 26 additions and 26 deletions

View File

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