there was a construct:
char cc;
QCString res;
res = cc;

This (obviously) worked with QString, but does not work with QCString anymore
(which you changed res to). (res=""; res+=cc; does the thing).
I hope there are no other instances of this problem in your fight for
QT_NO_ASCII_CAST :-)

svn path=/trunk/kdebase/konsole/; revision=60497
wilder-portage
Michael Matz 26 years ago
parent 07724e5c73
commit 91c1807c11
  1. 3
      src/keytrans.C

@ -193,7 +193,8 @@ void KeytabReader::getSymbol()
}
if (strchr("+-:",cc))
{
res = (char)cc;
res = "";
res = res + (char)cc;
getCc();
sym = SYMOpr; return;
}

Loading…
Cancel
Save