hi,
i am trying to replace the below code in vc++
LPCSTR p1,p;
if (*p1 == *p++)
return p1+1;
LPCSTR p1,p;
if (*p1 == *p++)
return p1+1;
To copy to clipboard, switch view to plain text mode
what i have done till now is
if (str1data == strp++)
{
return str1data+1;
}
QChar *str1data,strp;
if (str1data == strp++)
{
return str1data+1;
}
To copy to clipboard, switch view to plain text mode
compile error that i am getting :QString::QString(QChar)' : cannot convert parameter 1 from 'QChar *' to 'QChar
What should be done regarding this? I am poor in programming plz bear with me...
Bookmarks