Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
m
h
Where does the segfault happen? Best would be to run your program in debug mode. You usually should be shown the line where the crash happens.
PS: please wrap your code in @-tags, not in [ code ].
well thats the problem i dont see the line in my code where it gives the problem. I run in debugger mode. shows error in some Qt header file: qscopedpointer.h
piece of code:
@ inline T *data() const { return d; <<<<<< points to here }
inline bool isNull() const { return !d; }
@
Thanks
Two things you can try:
Somehwere further down, the backtrace of the segfault should show you the line in your code that triggered the error.