Hello,

I'm using Qt 4.2.2 on Gentoo Linux. My problem is that I can't insert öüä characters in textboxes. Characters like é Ã* (using ´+e) work.

I have no problems in all KDE-Applications.

Any tipps how I can find the cause of this problem?

thanks, niko

PS: This is my very simple test-code:
Qt Code:
  1. #include <QtGui>
  2. int main(int argc, char** argv) {
  3. QApplication app(argc, argv);
  4. QLineEdit lineEdit;
  5. lineEdit.show();
  6. return app.exec();
  7. }
To copy to clipboard, switch view to plain text mode