added shared_pointer typedefs, monitor.h IF changed to used shared_pointers

This commit is contained in:
Matej Sekoranja
2011-04-24 23:56:58 +02:00
parent fc74317993
commit b45b965f14
9 changed files with 141 additions and 44 deletions
+1 -1
View File
@@ -150,7 +150,7 @@ bool PVField::renameField(String newName)
int index = structure->getFieldIndex(newName);
if(index>=0) return false;
}
Field::Ptr field(const_pointer_cast<Field>(pImpl->field));
Field::shared_pointer field(const_pointer_cast<Field>(pImpl->field));
field->renameField(newName);
return true;
}