[TechDraw] Remove deprecated replaceGeomFormat

This commit is contained in:
Benjamin Bræstrup Sayoc
2022-08-02 12:55:27 +02:00
committed by WandererFan
parent 8719b71e39
commit 750fa24b2e
2 changed files with 0 additions and 9 deletions

View File

@@ -419,14 +419,6 @@ TechDraw::GeomFormat* CosmeticExtension::getGeomFormatBySelection(int i) const
return getGeomFormatBySelection(eName);
}
bool CosmeticExtension::replaceGeomFormat(GeomFormat* newGF)
{
(void) newGF;
Base::Console().Message("CX::replaceGeomFormat() - deprecated. do not use.\n");
bool result = false;
return result;
}
void CosmeticExtension::removeGeomFormat(std::string delTag)
{
// Base::Console().Message("DVP::removeCE(%s)\n", delTag.c_str());

View File

@@ -79,7 +79,6 @@ public:
virtual GeomFormat* getGeomFormatBySelection(std::string name) const;
virtual GeomFormat* getGeomFormatBySelection(int i) const;
virtual GeomFormat* getGeomFormat(std::string id) const;
virtual bool replaceGeomFormat(TechDraw::GeomFormat* gf);
virtual void removeGeomFormat(std::string tag);