Capitalize beginning of tooltips + Typos

Capitalized all remaining uncapitalized tooltips. 
+ Fixed typo in instantiate() function. Shouldn't have any repercussions on the code, AFAICT. 
+ other typos
This commit is contained in:
Unknown
2017-10-12 07:51:47 -04:00
committed by wmayer
parent e9bed58f4b
commit fa4a6b43ee
17 changed files with 36 additions and 36 deletions

View File

@@ -1455,7 +1455,7 @@ std::vector<std::string> Document::getRedoVector(void) const
return getDocument()->getAvailableRedoNames();
}
/// Will UNDO one or more steps
/// Will UNDO one or more steps
void Document::undo(int iSteps)
{
for (int i=0;i<iSteps;i++) {
@@ -1463,7 +1463,7 @@ void Document::undo(int iSteps)
}
}
/// Will REDO one or more steps
/// Will REDO one or more steps
void Document::redo(int iSteps)
{
for (int i=0;i<iSteps;i++) {
@@ -1517,7 +1517,7 @@ void Document::handleChildren3D(ViewProvider* viewProvider)
}
//find all unclaimed viewproviders and add them back to the document (this happens if a
//viewprovider has been claimed before, but the object droped it.
//viewprovider has been claimed before, but the object dropped it.
if(rebuild) {
auto vpmap = d->_ViewProviderMap;
for( auto& pair : d->_ViewProviderMap ) {