Package: lincvs
Version: 1.4.4-1
Severity: normal
Tags: patch

When building 'lincvs' with gcc-4.1, I get the following error:

g++ -c -Wall -g -pipe -W -DUSE_FAM -D_REENTRANT -DQT_NO_DEBUG 
-DQT_THREAD_SUPPORT -DQT_SHARED -O2 -I/usr/share/qt3/mkspecs/default -I. -I. 
-Isrc -I./res -Iconfig -Icvslib -Icompat -I/usr/include/qt3 -I.ui/ -I.moc/ -o 
.obj/PixmapTimer.o src/PixmapTimer.cpp
src/PixmapTimer.h:87: error: extra qualification 'CPixmapTimer::' on member 
'CPixmapTimer'
make[1]: *** [.obj/PixmapTimer.o] Error 1
make[1]: Leaving directory `/lincvs-1.4.4'
make: *** [build-stamp] Error 2

With the attached patch 'lincvs' can be compiled using gcc-4.1.

Regards
Andreas Jochens

diff -urN ../tmp-orig/lincvs-1.4.4/src/PixmapTimer.h ./src/PixmapTimer.h
--- ../tmp-orig/lincvs-1.4.4/src/PixmapTimer.h  2005-07-25 20:13:55.000000000 
+0000
+++ ./src/PixmapTimer.h 2006-04-21 14:57:09.000000000 +0000
@@ -84,7 +84,7 @@
 
 public:
        CPixmapTimer(QObject * parent = 0, const char * name = 0);
-       CPixmapTimer::~CPixmapTimer();
+       ~CPixmapTimer();
 
 signals:
        void signalTimeout(const QPixmap &);


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to