protux-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Protux-devel] autotoolized mustache, please test


From: Martin Herren
Subject: Re: [Protux-devel] autotoolized mustache, please test
Date: Mon, 10 Feb 2003 23:30:05 +0100

On Mon, 10 Feb 2003 21:25:45 +0100
address@hidden (booker) wrote:

> Done, but now I got this errors:
> 
> .....
> .....
> g++ -DHAVE_CONFIG_H -I. -I. -I. -I/usr/lib/qt3/include -DQT_THREAD_SUPPORT 
> -D_REENTRANT -c MustuxGlobalProperties.cc -MT MustuxGlobalProperties.lo -MD 
> -MP -MF .deps/MustuxGlobalProperties.TPlo  -fPIC -DPIC -o 
> .libs/MustuxGlobalProperties.lo
> MustuxGlobalProperties.cc: In function `void MustuxGlobalProperties::save()':
> MustuxGlobalProperties.cc:129: no match for `QTextStream& << <unknown type>' 
> operator
> /usr/lib/qt3/include/qtextstream.h:105: candidates are: QTextStream&
> QTextStream::operator<<(const char*)

the strange thing is that there are only (const char*), which is proposed as 
candidate... i don't have any idea what causes this problem.

for the moment you can just comment out the line which cause problems:

rcStream << it.currentKey().latin1() << "=" << it.current()->value.latin1() << 
std::endl;

but don't comment out the line with it++; !


or you can replace it by:

rcStream << it.currentKey().latin1();
rcStream << "=";
rcStream << it.current()->value.latin1();
rcStream << std::endl;

this won't solve the problem, but if you tell us which line causes the problem 
after this change, we might find out why...

btw, which compiler version do you use ?

/Martin
-- 
Martin Herren

Protux - A Free Professional Audio Tool for GNU/Linux:
-> http://www.nongnu.org/protux/
Open your Windows - Free your Mind - Enjoy:
->http://gnuwin.epfl.ch

Attachment: pgpo4r6G3ARcu.pgp
Description: PGP signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]