You are not logged in.

1

Wednesday, December 17th 2003, 7:15pm

Kopete .8beta1

I'm having an error everytime I build Kopete .8b1:

behaviorconfig.cpp: In member function `virtual void BehaviorConfig::save()':
behaviorconfig.cpp:108: error: `setChanged' undeclared (first use this
function)
behaviorconfig.cpp:108: error: (Each undeclared identifier is reported only
once for each function it appears in.)
make[5]: *** [behaviorconfig.lo] Error 1
make[5]: Leaving directory `/home/scott/Zips/kopete-0.8beta1/kopete/kopete/config/behavior'
make[4]: *** [all-recursive] Error 1
make[4]: Leaving directory `/home/scott/Zips/kopete-0.8beta1/kopete/kopete/config'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/home/scott/Zips/kopete-0.8beta1/kopete/kopete'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/home/scott/Zips/kopete-0.8beta1/kopete'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/scott/Zips/kopete-0.8beta1'
make: *** [all] Error 2

Anybody know how to fix this? Also ~ Anybody know when to expect the release of this version? I'm antsy for taskbar flashing :D

seb

Professional

Posts: 622

Location: Sydney

Occupation: Student

  • Send private message

2

Thursday, December 18th 2003, 1:09pm

the file behaviorconfig.cpp is reffering to a variable called `setChanged' at line 108 which does not exist. Try looking around that area of the file for a typo.

If there doesnt seem to be a typo, add a line declaring the variable setChanged, eg

boolean setChanged; (i dont know the correct type, experiment)