Hi,

I am subclassing QLineEdit in order to check the input string, if can replace a defined two char sequence. G.e. "u:" should transformed in "ü".
How can I catch the signal textChanged() to perform my changes in a private slot and only after this the signal should go out the the other widgets? If I not suppress the signal, it is going out twice. Once for "u:" and once for the changed "ü". But I want that only the last one is emitted.


Thanks for suggestions,

Lykurg