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:
#include <QtGui>
int main(int argc, char** argv) {
lineEdit.show();
return app.exec();
}
#include <QtGui>
int main(int argc, char** argv) {
QApplication app(argc, argv);
QLineEdit lineEdit;
lineEdit.show();
return app.exec();
}
To copy to clipboard, switch view to plain text mode
Bookmarks