Qstring is not a class or namespace name
Unsolved
General and Desktop
-
Trying to create a program, when I build it at the end, it says the following error message: "Qstring is not a class or namespace name" and also "number identifier not found". Any help or suggestions?
-
@TIG_Slayer1
C++ is case sensitive, so you have to abide by that -Qstring
is different fromQString
. -
@kshegunov Thank you so much for the help! Such a simple mistake