Nop. Note that there's a better solution: using a textureRect with negative width/height (this solution maps exactly to what the Flip functions did).
// flip X
sprite.setTextureRect(sf::IntRect(width, 0, -width, height));
If you really miss the Flip functions, you can write yours as free functions, using the implementation above.