Here is the code:
// Latitude line edit
QLineEdit *lineEdit = new QLineEdit;
lineEdit->setInputMask( ">\N999999.99;_" );
But, I am getting compiler warning: Unknown escape sequence '\N' and QLineEdit text does not contain 'N' character, only '_'. What am I doing wrong? Than you all in advance.