Run just "make", without parameters. The default target will be built.C:\Documents and Settings\chikon\My Documents\Eclips projects\poy3>make roy3
Run just "make", without parameters. The default target will be built.C:\Documents and Settings\chikon\My Documents\Eclips projects\poy3>make roy3
it worked, thanks
I put it as atached file.
is it ok to write the lines I changed only?
You have declared a slot called ImageViewer::applyEffect() but not implemented it.undefined reference to `ImageViewer::applyEffect()'
J-P Nurmi
thanks@
just fixed it and now it works thanks to you all
can't believe I wasted 24 hours on this! just wanted to check if things are working before I do the image effects.
how do u find compile error ? what is this long list before the error message?
what toold do you use to debug and to find error?
long day......
IDEs can find error messages for you. Since errors are printed on the stderr, you can use "make > NUL" to filter out non-error messages.
The lines starting with "mingw32-make" are from make which tells you what it's doing at the moment and the lines starting with "g++" are the actual commands that were used to compile your application.
If your program compiles, but it doesn't work, you can use a debugger (for example gdb), but it's useful only if you don't know what your program does.
thanks, usefull info![]()
Bookmarks