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

This commit is contained in:
wmayer
2022-08-29 14:09:18 +02:00
parent 5240a30431
commit ba8d5ab055
81 changed files with 188 additions and 186 deletions

View File

@@ -52,7 +52,7 @@ namespace bp = boost::placeholders;
class ElementColors::Private: public Gui::SelectionGate
{
public:
typedef boost::signals2::connection Connection;
using Connection = boost::signals2::connection;
std::unique_ptr<Ui_TaskElementColors> ui;
ViewProviderDocumentObject *vp;
ViewProviderDocumentObject *vpParent;