![]() |
2010-06-10
, 19:27
|
|
Posts: 1,296 |
Thanked: 1,773 times |
Joined on Aug 2009
@ Budapest, Hungary
|
#2
|
![]() |
2010-06-10
, 19:33
|
Posts: 42 |
Thanked: 48 times |
Joined on Feb 2010
|
#3
|
![]() |
2010-06-12
, 18:26
|
Posts: 53 |
Thanked: 51 times |
Joined on Feb 2010
|
#4
|
> make g++ -c -pipe -O2 -Wall -W -D_REENTRANT -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/targets/FREMANTLE_X86/usr/share/qt4/mkspecs/linux-g++ -I. -I/targets/FREMANTLE_X86/usr/include/QtCore -I/targets/FREMANTLE_X86/usr/include/QtGui -I/targets/FREMANTLE_X86/usr/include -I. -I. -o HelloWorld.o HelloWorld.cpp HelloWorld.cpp:6: error: stray '\342' in program HelloWorld.cpp:6: error: stray '\200' in program HelloWorld.cpp:6: error: stray '\234' in program HelloWorld.cpp:6: error: stray '\342' in program HelloWorld.cpp:6: error: stray '\200' in program HelloWorld.cpp:6: error: stray '\235' in program HelloWorld.cpp: In function 'int main(int, char**)': HelloWorld.cpp:6: error: 'Hello' was not declared in this scope make: *** [HelloWorld.o] Error 1
#include <QApplication> #include <QLabel> int main(int argc, char *argv[]) { QApplication app(argc, argv); QLabel *label = new QLabel(“Hello World”); label->show(); return app.exec(); }
![]() |
2010-06-12
, 18:51
|
Posts: 726 |
Thanked: 345 times |
Joined on Apr 2010
@ Sweden
|
#5
|
The Following User Says Thank You to Joorin For This Useful Post: | ||
![]() |
2010-06-12
, 22:32
|
Posts: 53 |
Thanked: 51 times |
Joined on Feb 2010
|
#6
|
Use ASCII for tokens that are to be parsed.
What editor are you using? It's fooling you. Teach it some manners.
(The problem is the citation marks.)
![]() |
2010-06-12
, 22:47
|
Posts: 44 |
Thanked: 186 times |
Joined on Apr 2010
@ Worthing, West Sussex, England
|
#7
|
QLabel *label = new QLabel(“Hello World”);
The Following User Says Thank You to fieldofcows For This Useful Post: | ||
![]() |
2010-06-12
, 23:29
|
Posts: 53 |
Thanked: 51 times |
Joined on Feb 2010
|
#8
|
It looks like you're using the wrong characters for the quotes in this line:
Change these to ASCII quotes and it should compile.Code:QLabel *label = new QLabel(“Hello World”);
I'm not sure why gedit would have used the wrong quotes. Did you copy/paste the hello world code from somewhere?
![]() |
2010-06-13
, 11:40
|
Posts: 53 |
Thanked: 51 times |
Joined on Feb 2010
|
#9
|
![]() |
2010-06-13
, 11:47
|
Posts: 402 |
Thanked: 229 times |
Joined on Nov 2009
@ Missouri, USA
|
#10
|
The Following User Says Thank You to aspidites For This Useful Post: | ||
After a long time of messing about with QT and scratchbox, I now have a zippy Qt creator (version 1.3.1 based on Qt 4.6.3) and scratchbox installed today (no idea how to check which version it is...).
Now I have loaded the SDK, and I get a nice screen with the blue background and what not... but it is very slow.... but that issue is for another day.
Now I want to create the customary hello world and I am kinda stuck.
I want to:
1. Design in Qt
2. Compile in Qt
3. Test in scratchbox
4. Package and deploy onto my N900
Then I want to try and create a a button which when you press a message pops up saying "Hello World", and then do steps 1 to 4 on it....
I have no idea where to begin. I have tried to see if Qt picked up scrachbox... it didnt and I cant find anything in the docs....
Anyway, once my hello world program is done, I intend to get a Qt book and just work through it all....
But frst I need a hello world!!
Any ideas or a could you point me somewhere?
Thanks.