CVS commit by coolo: backporting work around for printers that list dimensions with more than one space between the numbers M +2 -1 ppdloader.cpp 1.3.2.3 --- kdelibs/kdeprint/ppdloader.cpp #1.3.2.2:1.3.2.3 @@ -70,6 +70,7 @@ static QString processLocaleString( cons } -static QValueList splitNumberString( const QString& s ) +static QValueList splitNumberString( const QString& _s ) { + QString s = _s.simplifyWhiteSpace(); QValueList l; int p1 = 1, p2 = 0;