Standardize icon naming

This commit is contained in:
WandererFan
2016-04-27 15:03:30 -04:00
committed by wmayer
parent 4bb2da998e
commit 58f9393ab1
54 changed files with 67 additions and 5441 deletions

View File

@@ -63,7 +63,7 @@ PROPERTY_SOURCE(TechDrawGui::ViewProviderProjGroup, Gui::ViewProviderDocumentObj
ViewProviderProjGroup::ViewProviderProjGroup()
{
sPixmap = "ProjGroup";
sPixmap = "TechDraw_Tree_ProjGroup";
}
ViewProviderProjGroup::~ViewProviderProjGroup()
@@ -92,7 +92,7 @@ std::vector<std::string> ViewProviderProjGroup::getDisplayModes(void) const
void ViewProviderProjGroup::updateData(const App::Property* prop)
{
Gui::ViewProviderDocumentObject::updateData(prop);
if(prop == &(getObject()->Scale) ||
prop == &(getObject()->ScaleType) ||
prop == &(getObject()->Views) ||
@@ -101,11 +101,11 @@ void ViewProviderProjGroup::updateData(const App::Property* prop)
Gui::TaskView::TaskDialog *dlg = Gui::Control().activeDialog();
TaskDlgProjGroup *projDlg = qobject_cast<TaskDlgProjGroup *>(dlg);
if (projDlg &&
if (projDlg &&
projDlg->getViewProvider() == dynamic_cast<const ViewProviderProjGroup *>(getObject()) ) {
projDlg->update();
}
}
}
}