Tagged Questions
5
votes
4answers
651 views
Code coverage tools for Symbian C++ and Maemo
What code coverage tools have you used with Symbian C++ and Maemo? What are the pros and cons of the tool you are using?
3
votes
1answer
80 views
Is it legal to use functions returning a temporary in initialiser lists
I have the following constructor of an object
Segment::Segment(QPointF const& start, QPointF const& end):
mOrigin(toVector3df(start)),mEnd(toVector3df(end)){
}
mOrigin is of type ...
3
votes
2answers
1k views
OpenCV with QT on Maemo 5 (N900)
Since the presentation by Eero Bragge at theAmterdam devdays about QT / QT-Creator I've been looking for an excuse to try my hands at mobile development. Now this excuse has arrived in the form of the ...
2
votes
1answer
68 views
n900 - maemo - timing
I am attempting to save a file every second within +- 100ms (10% error). The problem I am having is that my timing measurement is saying that execution took 1150 ms, but in reality it appears to be 3 ...
1
vote
4answers
242 views
Segmentation fault when run as root?
My c++ program gives me a seg fault when I run as root from my computer but not when I start a remote session. My program run from my computer only as a user. What can be the problem? I wrote my ...
1
vote
0answers
52 views
QMaemoListPickSelector not showing anything
Alright I tried using a QMaemo5ListPickSelector together with a QMaemo5ValueButton, but when I click on the button, a popup dialog box does come up, but it doesnt any list ..
Here is a picture of ...
1
vote
2answers
82 views
Strange compilation errors when I use Maemo5 specific Qt classes .. !
Hey guys .. I recently tried to use some Maemo5 specific classes (e.g. QMaemo5ListPickSelector, etc ..), and I'm getting some strange compile time errors ..
Here is a small code I was trying out:
...
0
votes
1answer
1k views
ISO C++ forbids declaration of … with no type
Bad luck, I had to go back to c++ (I'm c# developer) and as a school project make an Qt mobile application for maemo..
I have my class declaration, but I get the error as follows ISO C++ forbids ...
0
votes
1answer
74 views
fcam - n900 - mysterious reboot
I wrote an application to take pictures and well it takes pictures, but it also randomly reboots.
How can I determine what caused it? Do I need to observe FCam events or can I just write a simple ...
0
votes
1answer
206 views
FCam - low light / HDR photos
I am using FCam to take pictures and right now without modification, the pictures are par for a smartphone camera. FCam advertises HDR and low-light performance, but I don't see any examples of how ...
0
votes
1answer
25 views
FCam - pictures are coming out weird
I am writing an FCam application and any picture I take that has movement has a noticeable distortion. I don't know if I'm using the API correctly or not.
It appears that the image is written from ...
0
votes
1answer
178 views
Qt - Maemo application - how to handle CTRL+C?
I wrote a simple application to take pictures in c++ and am guessing I probably should do some cleanup whenever CTRL+C is pressed. I am using QTCreator to write the application along with MADDE, but ...
0
votes
1answer
212 views
Maemo 5 Qt: how to capture frame (RGB) from first and second camera?
So (I havent tried yet) but it somehow seems that video for linux 2 will work... But I wonder is it possible to do such thing with for pure qt libs?
0
votes
0answers
63 views
Need help in setting the background of a QListPickSelector entry to an image
I'm using a QListPickSelector in my project and the idea is that it displays a set of images, rather than a list of strings .. Now I have tried using the setIcon() function, which works, but the image ...