Re: [Kmymoney2-user] ofx

Bob Ewart <[email protected]> Sat, 24 Sep 2005 17:43:26 -0400
Newsgroups gmane.comp.kde.kmymoney2.devel,gmane.comp.finance.libofx.devel
Message-ID <[email protected]>
ace jones wrote:
>On Sat, 2005-09-24 at 13:38, Wim Wust wrote:
>  
>>When I'm trying to install libofx 0.8 or 0.7.0 from source the configure parts 
>>goes uniterrupted. However when I use ' make'  i get the followiing warnings:
>>
>>ree.hh:72: error: explicit qualification in declaration of `void 
>>kp::destructor(T1*)'
>>ofx_container_generic.lo] Fout 1
>>*** [all-recursive-am] Fout 2
>>
>>What can I do to avoid those warnings? I' using suse 10.0
>>    
>
>Hi, Wim.  What version of KMM are you using?  Are you installing from
>source or RPM?  If RPM, where did you get the RPM?
>
>Is this a problem making KMM or libOFX?  If libOFX, you should contact
>us on the libofx developer's list, where there will be more knowledge
>about these matters.  ([email protected])
>
>If this is KMM, have you tried doing "make clean" before make?  If not,
>please try that.
>
></Ace>
>
>
>
>  
The problem is with line 72 of tree.hh. It reads:
inline void kp::destructor(T1* p)

Change it to:

inline void destructor(T1* p)

since you are already inside a

namespace kp {

Gcc 4 considers this a hard error.  (I ran into this problem yesterday.)

Bob