Qstring is not a class or namespace name
Unsolved
General and Desktop
-
wrote on 10 Feb 2016, 20:55 last edited by
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?
-
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?
Moderatorswrote on 10 Feb 2016, 20:57 last edited by kshegunov 2 Oct 2016, 20:57@TIG_Slayer1
C++ is case sensitive, so you have to abide by that -Qstring
is different fromQString
. -
@TIG_Slayer1
C++ is case sensitive, so you have to abide by that -Qstring
is different fromQString
.wrote on 10 Feb 2016, 21:01 last edited by@kshegunov Thank you so much for the help! Such a simple mistake
2/3