Hmm, anyone know why this is happening?
If I use kapplication.h and call KApplication app(argc, argv) I get a linker error (error below). If I replace those two k's with q then I don't get the error....
I'm trying to port a Windows program to KDE/Linux, so i'm hoping to use the kde specific stuff
|
Source code
|
1
2
3
4
5
6
7
8
|
kgmail.o(.text+0x308): In function `main':
: undefined reference to `KApplication::KApplication[in-charge](bool, bool)'
kgmail.o(.text+0x329): In function `main':
: undefined reference to `KApplication::~KApplication [in-charge]()'
kgmail.o(.text+0x33c): In function `main':
: undefined reference to `KApplication::~KApplication [in-charge]()'
collect2: ld returned 1 exit status
make: *** [kgmail] Error 1
|