Remove non-empty exception specifications, which have been deprecated for nearly ten years now

This commit is contained in:
2020-02-10 22:36:36 -05:00
parent 43b4379772
commit e7a264bb90
16 changed files with 78 additions and 78 deletions

View File

@@ -39,10 +39,10 @@ class cStack : public cContainer {
bool drawFramed = false;
public:
std::string parse(ticpp::Element& who, std::string fname) override;
void setFormat(eFormat prop, short val) throw(xUnsupportedProp) override;
short getFormat(eFormat prop) throw(xUnsupportedProp) override;
void setColour(sf::Color clr) throw(xUnsupportedProp) override;
sf::Color getColour() throw(xUnsupportedProp) override;
void setFormat(eFormat prop, short val) override;
short getFormat(eFormat prop) override;
void setColour(sf::Color clr) override;
sf::Color getColour() override;
bool isClickable() override;
bool isFocusable() override;
bool isScrollable() override;