PDA

View Full Version : Few easy questions.....



KillGabio
13th February 2012, 13:51
Hi eveyone!!! Few questions:

1) when releasing the application I notice that I have no problems executing it in another machine...but... *.gif images are not shown :( only *.png ones seem to be attached to the code, I have to change the path and include the images myself intead of adding them to the resources of my project???

2) my code is totally visible to everyone that has access to my application, should I encode it? theres an option in Qt? (I mean moc_*.cpp can be easily read by every programmer as it is pure code)--> they can be deleted I just tried, I only need to include the necessary *.dll

3) has anyone seen "luck" tv series starring dustin hoffman..is it good? lol

thanks in advance!!

ChrisW67
13th February 2012, 23:36
1) You need to deploy the GIF imageformats plugin. Search for "imageformats"... this is covered here routinely.
2) Don't deploy your source code or intermediate files (*.o, moc* etc.), only the resulting executables/libraries and any resources that are not built in.
3) Yes, I am sure someone has... not me.

KillGabio
14th February 2012, 00:15
Jajaja thanks chris!! I had my first Quality Control today and well, could be worst! Just too much little details to change :/
Adding the qgif4.dll to my imageformats worked great :D thanks a lot